categories - Show only first category name in RSS?

admin2025-06-03  3

I have a custom RSS feed that uses <?php the_category_rss('rss2') ?>. I'd like to only show the first category name per post. I've tried using a filter. This isn't right, but I'm not sure how to work it.

add_filter('the_category_rss', 'remove_rss_categories');

function remove_rss_categories( $the_list ) {

    $categories = get_the_category();
    $category = $categories[0]->name;

    $the_list = esc_html("<category><![CDATA[{$category}]]></category>");

    return $the_list;
}
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1748893010a314596.html

最新回复(0)