Co-Authors-Plus icon indicating copy to clipboard operation
Co-Authors-Plus copied to clipboard

plugin conflicts with custom taxonomy archive page titles

Open oicurmt3 opened this issue 6 years ago • 1 comments

See the issue here... https://wordpress.org/support/topic/this-plugin-conflicts-with-custom-taxonomy-archive-page-titles-in-my-theme/

oicurmt3 avatar Jan 08 '19 13:01 oicurmt3

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 );
}

oicurmt3 avatar Aug 26 '19 09:08 oicurmt3