I am using wp_list_pages. I am unable to change page title
For eg:- I made a page with name lorem ipsum and want to show in content area the same name i.e lorem ipsum. But in menu, I want to show the name lorem. How to do this.
| ||||
|
feedback
|
|
@Michael is right using wp_nav_menu() is the easiest route to go for this. If your menu (with your server problems) is only allowing to show 100 items you could consider splitting it up in to two menus. Using wp_nav_menu() is the easiest way to go and creating two menus using the label atribute is equally easy. First you would register the menus. This code gets added in your theme's functions.php.
This will register two menus. Then put this where your menu is to go in your theme:
Then style it how you want so that they work seamlessly together. | |||
|
feedback
|
wp_nav_menu()codex.wordpress.org/Function_Reference/wp_nav_menu which should allow what you want; codex.wordpress.org/Appearance_Menus_Screen – Michael Nov 15 '11 at 12:08