Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove Prefix Title on Archive Page */
- function remove_prefix_title_on_archive_page( $prefix ) {
- if ( is_archive() ) {
- $prefix = '';
- }
- return $prefix;
- }
- add_filter( 'get_the_archive_title_prefix', 'remove_prefix_title_on_archive_page' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement