How to insert the number of posts from the category in wp _title?

If your theme supports WordPress adding the title tag using add_theme_support( 'title-tag' ); (it should!) you can use the document_title_parts filter to insert the post count in the right place without needing to parse the full title or modify existing elements that might have been customised, such as the separator:

function wpse_323260_document_title_category_count( $title ) {
    if ( is_category() ) {
        $category = get_queried_object();

        $title['title'] = sprintf(
            '%d posts in %s Category',
            $category->count,
            esc_html( single_cat_title( '', false ) )
        );
    }

    return $title;
}
add_filter( 'document_title_parts', 'wpse_323260_document_title_category_count' );

Leave a Comment