Created
February 13, 2019 21:58
-
-
Save moxdev/d2cf98ed1b60f494ba69fc16c7fd904a to your computer and use it in GitHub Desktop.
Removes Archive from the Title of the Archive #wp
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
/** | |
* 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