Skip to content

Instantly share code, notes, and snippets.

@albionselimaj
Last active November 26, 2018 01:26
Show Gist options
  • Save albionselimaj/84cf00e5792b3cbda41a958f937650da to your computer and use it in GitHub Desktop.
Save albionselimaj/84cf00e5792b3cbda41a958f937650da to your computer and use it in GitHub Desktop.
Modify page title
<?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