add_filter( 'get_the_archive_title', function( $title ) { if ( is_home() ) { return 'Your Custom Title Here'; // or return ''; } return $title; });