我有这个按类别显示帖子数量的代码。
如果我访问类别体育,请在标题34中显示文章。如果我访问标题12文章中显示的营养类别。
但是这个代码错了,有人知道为什么吗?
add_shortcode(\'catcount\', \'wp_get_cat_postcount\');
function wp_get_cat_postcount($id) {
$cat= get_the_category();
echo \'<span class="catcount">\'. $cat[0]->count .\' ARTÍCULOS</span>\';
}