Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karamansky/0b963c63faff47270592e26e154d056a to your computer and use it in GitHub Desktop.
Save karamansky/0b963c63faff47270592e26e154d056a to your computer and use it in GitHub Desktop.
//remove 'Archive:' from archive title
add_filter( 'get_the_archive_title', function( $title ){
return preg_replace('~^[^:]+: ~', '', $title );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment