Automattic / Co-Authors-Plus

Multiple bylines and Guest Authors for WordPress
https://wordpress.org/plugins/co-authors-plus/
GNU General Public License v2.0
291 stars 204 forks source link

plugin conflicts with custom taxonomy archive page titles #642

Open oicurmt3 opened 5 years ago

oicurmt3 commented 5 years ago

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

oicurmt3 commented 5 years ago

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