Skip to content

Instantly share code, notes, and snippets.

@moxdev
Created February 13, 2019 21:58
Show Gist options
  • Save moxdev/d2cf98ed1b60f494ba69fc16c7fd904a to your computer and use it in GitHub Desktop.
Save moxdev/d2cf98ed1b60f494ba69fc16c7fd904a to your computer and use it in GitHub Desktop.
Removes Archive from the Title of the Archive #wp
/**
* Removes 'Archive:' from title if taxonomy is 'property_locations'
* Used as H1 on Property Locations pages
*/
add_filter(
'get_the_archive_title',
function ( $title ) {
if ( is_tax( 'property_locations' ) ) {
$title = single_cat_title( '', false );
}
return $title;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment