Edit page title
-
Is there a similar snippet in SEO FRAMEWORK to edit page title?
YOAST:
add_filter('wpseo_title', 'custom_titles', 10, 1); function custom_titles() { global $wp; $current_slug = $wp->request; if ($current_slug == 'foobar') { return 'Foobar'; } }
ALL IN ONE SEO:
add_filter( 'aioseo_title', 'aioseo_filter_title' ); function aioseo_filter_title( $title ) { if ( is_singular() ) { return $title . 'some additional title content here'; } return $title; }
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Edit page title’ is closed to new replies.