How can I control the comment counts filtering my CPT replies?
Here are three different methods to modify the trash count, to 999 as an example: Method #1 The views_edit-comments filter: add_filter( ‘views_edit-comments’, function( $views ) { $trash_count = 999; // <– Adjust this count // Override the ‘trash’ link: $views[‘trash’] = sprintf( “<a href=%s>%s <span class=”count”>(<span class=”trash-count”>%d</span>)</span></a>”, esc_url( admin_url( ‘edit-comments.php?comment_status=trash’) ), __( ‘Trash’ ), $trash_count … Read more