У меня есть вопрос.
Как подсчитать количество постов тега?
Пример: Отметить фотографии (67)
Спасибо
Используйте код ниже:
$taxonomy = "category"; // can be category, post_tag, or custom taxonomy name // Using Term Slug $term_slug = 'some-category'; $term = get_term_by('slug', $term_slug, $taxonomy); // Fetch the count echo $term->count;
Смотри здесь.