Skip to content

Instantly share code, notes, and snippets.

@DannyCooper
Last active January 25, 2018 11:41
Show Gist options
  • Save DannyCooper/9ad5ebd70f91b120b3c98101ba73cbe1 to your computer and use it in GitHub Desktop.
Save DannyCooper/9ad5ebd70f91b120b3c98101ba73cbe1 to your computer and use it in GitHub Desktop.
Modify The Section Archive Title
<?php
/**
* Remove 'Section:' from Section archive titles.
*
* @param string $title The default title to be filtered.
*/
function ot_apollo_filter_archive_title( $title ) {
if ( is_tax( 'section' ) ) {
$title = single_term_title( '', false );
}
return $title;
}
add_filter( 'get_the_archive_title', 'ot_apollo_filter_archive_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment