How Do I Use The Wordpress 3.0 Menu Creator?
Uploader Comments (DarylLozupone)
All Comments (26)
-
But you forgot to tell us how to get ride of the links on the right side. Like recent posts, recent comments etc etc
I want it to look like a website.
Can you please tell me how? using the dashboard and not coding
God bless
-
@SatanKreator I do not know. There is no "logical and" in the code I provided. If you would like to contact me privately, I would be happy to take a look at what you have done and why it is not working.
-
Dude thanks for the video, I have a question though, I copy pasted the PHP code you wrote to enable the menu support but I get this error when I activate the theme Please Help, whats wrong: Parse error: syntax error, unexpected T_LOGICAL_AND in /home/a1935690/public_html/wp-
content/themes/Alwaleed/functi ons.php on line 150 -
@imateixx If you are familiar with php coding, you will have to add the following to your theme files (very simple example):
To enable menus for the theme add this to functions.php:
function mytheme_menusupport() { register_nav_menus( array( 'primary_nav' => 'Primary Menu', ) );
}
add_action( 'init', 'mytheme_menusupport' );
and then to show the menu in the theme (usually index.php):
wp_nav_menu();
If you are not familiar with php coding, please feel free to contact me.
-
My problem is : The current theme does not natively support menus,
How can I solve this problem?
thanks, great teacher :)
cellphonecases4women 4 months ago
@cellphonecases4women Thank you.
DarylLozupone 4 months ago
Thank you so much! This is exactly what I was looking for. :)
ladyofraven 1 year ago
@ladyofraven Great. Glad it helped.
DarylLozupone 1 year ago