Skip to content

Instantly share code, notes, and snippets.

@proweb
Last active December 18, 2025 19:46
Show Gist options
  • Select an option

  • Save proweb/f329cde740e0802870871bef830fab50 to your computer and use it in GitHub Desktop.

Select an option

Save proweb/f329cde740e0802870871bef830fab50 to your computer and use it in GitHub Desktop.
WordpPress functons.php snippets

WordpPress functons.php snippets

// Remove prefix for Archive titles
add_filter( 'get_the_archive_title', function ( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return $title;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment