How to change just wordpress post title but not menu items.
add_filter('the_title', 'wordpress_title');
function wordpress_title(){
return 'New title';
}

|
How to change just wordpress post title but not menu items.
|
||||
Have you tried the |
|||
|
|
|
If you're using custom nav menus, you can do this entirely without code. Go to |
|||
|
|
|
|||
in_the_loop()conditional check. – amit Sep 7 '12 at 8:00