When I use wp_title filter hook, the title on the browser doesn’t change. To solve this ensure at your theme header.php, there is wp_title() at the title tag.
1 2 |
<title><?php wp_title(); ?></title> <?php wp_head(); ?> |
Then you can use the wp_title filter.
1 2 3 4 5 |
add_filter( 'wp_title', 'wpdocs_filter_wp_title'); function wpdocs_filter_wp_title( $title ) { return 'prefix '.$title.' suffix'; } |