Function to change page title not works in plugin
-
Hi,
I want put a custom page title in a specific page. So, if I’ll put a code in functions.php this works fine, but if I’ll put this code in my plugin, not works.The code is:
function wp_myplugin_property_title() { if( is_page('images') ){ $seotitle = 'custom title'; return $seotitle; } } add_filter('wp_title', wp_myplugin_property_title, 100);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Function to change page title not works in plugin’ is closed to new replies.