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.
add_filter('the_title', 'wordpress_title');
function wordpress_title(){
return 'New title';
}
You must be logged in to post a comment.
Have you tried the
in_the_loop()
conditional check to return new title only if called inside loop. That means nav menu’s will not get affected.If you’re using custom nav menus, you can do this entirely without code. Go to
Appearance
->Menus
and change the “Navigation Label” of each menu item you want to be different.You need the right set of contditions:
Place this in your plugin or theme: