Skip to content

Instantly share code, notes, and snippets.

@seredniy
Last active December 7, 2016 12:24
Show Gist options
  • Save seredniy/fba4f1a0b75b670f9aa3b0cc72b2c338 to your computer and use it in GitHub Desktop.
Save seredniy/fba4f1a0b75b670f9aa3b0cc72b2c338 to your computer and use it in GitHub Desktop.
Количество постов в категории WordPress
// Кол-во постов в категории
function scf_get_category_count($taxonomy, $name) {
// Формируем запрос
$term_slug = $name;
$term = get_term_by('slug', $term_slug, $taxonomy);
// возвращаем данные
return $term->count;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment