How to Remove Prefix From Archive Title in WordPress

Last update:

Paste this snippet to the functions.php in your child theme or Code Snippet plugin (or its equivalent).

The Code

// Remove Prefix From Archive Titles
add_filter( 'get_the_archive_title_prefix', '__return_empty_string' );