Tagged Questions
0
votes
1answer
53 views
How to get or know the slug of home.php
I found this code from Different Main Navigation per category:
<?php
if(is_category('first-category') || in_category('first-category)) {
wp_nav_menu( array('menu' => 'First Category Nav' )); ...
0
votes
1answer
195 views
How to create menu spread over four lines including images
I would like to create a dynamic WordPress menu using wp_nav_menu() divided over four lines or rows as the static website http://tinyurl.com/82trdjw. I think I should either force the menu to do this ...
0
votes
1answer
3k views
How to show Home Page link in Wordpress Menu and how to add an icon to this?
I tried with this code:
function home_page_menu_args( $args ) {
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'home_page_menu_args' );
but gives me this error: Error ...