I am also facing the same issue. Have you solved the issue? Any solution?
Hello @ramineros & @sabbir33 👋
To use the plugin with your custom post types, you can use the following code snippet:
// Use CAP plugin with CPT 'your_cpt_slug'.
add_filter( 'coauthors_count_published_post_types', function( $post_types ) {
$post_types[] = 'your_cpt_slug';
return $post_types;
} );
add_post_type_support( 'your_cpt_slug', 'author' );
Once you added that snippet to your site, please ensure to replace your_cpt_slug
with the slug of your CPT.