source

Wordpress : 태그의 투고 수를 카운트하는 방법

ittop 2023. 3. 8. 21:46
반응형

Wordpress : 태그의 투고 수를 카운트하는 방법

질문있습니다.

태그의 투고 수를 어떻게 셀 수 있나요?

예: 사진에 태그 붙이기(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;

여기 보세요.

언급URL : https://stackoverflow.com/questions/5259817/wordpress-how-to-count-number-of-posts-on-a-tag

반응형