Home / Admin / Append Post Count to Category Descriptions in LLMS Files
Duplicate Snippet

Embed Snippet on Your Site

Append Post Count to Category Descriptions in LLMS Files

This snippet appends the post count to category descriptions shown in llms.txt

<10
Code Preview
php
<?php
add_filter( 'aioseo_llms_term_description', 'aioseo_filter_llms_term_description', 10, 2 );
function aioseo_filter_llms_term_description( $description, $term = null ) {
    if ( is_a( $term, 'WP_Term' ) && 'category' === $term->taxonomy && $term->count > 0 ) {
        $description .= ' This category contains ' . $term->count . ' posts.';
    }
    return $description;
}

Comments

Add a Comment