Co-Authors-Plus
Co-Authors-Plus copied to clipboard
plugin conflicts with custom taxonomy archive page titles
See the issue here... https://wordpress.org/support/topic/this-plugin-conflicts-with-custom-taxonomy-archive-page-titles-in-my-theme/
Fixed by (https://wordpress.org/support/users/jcdesign/) in the above forum post...
// CoAuthors Plus has a broken filter for titles.
// We will remove it.
if( class_exists('CoAuthors_Plus' ) ) {
global $coauthors_plus;
remove_filter( 'get_the_archive_title',
array( $coauthors_plus, 'filter_author_archive_title' ),
10 );
}