Modify title tag on specific template
-
Title tag support is set in the functions.php file
add_theme_support( 'title-tag' );
The site uses the Yoast SEO plugin for the majority of pages, however one of the page templates I want to override this and provide my own titles.
On the template page I add
add_filter('pre_get_document_title', 'custom_title'); function custom_title($title) { return 'Test New Title'; }
But the title isn’t changing.
Can anyone lend a hand?
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Modify title tag on specific template’ is closed to new replies.