Last active
November 26, 2018 01:26
-
-
Save albionselimaj/84cf00e5792b3cbda41a958f937650da to your computer and use it in GitHub Desktop.
Modify page title
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'document_title_parts', function( $title ) { | |
if ( get_query_var( 'explore_region' ) && ( $term = get_term_by( 'slug', sanitize_title( get_query_var( 'explore_region' ) ), 'region' ) ) ) { | |
$title['title'] = $term->name; | |
} | |
return $title; | |
}, 99); | |
// Prevent conflict with YoastSEO | |
add_filter( 'pre_get_document_title', function( $title ) { | |
return ''; | |
}, 999, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment