반응형
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
반응형
'source' 카테고리의 다른 글
문의 양식 7 전화번호 확인 (0) | 2023.03.08 |
---|---|
Angular.js: HH:mm:ss 필터까지의 초수 (0) | 2023.03.08 |
가시성이 AngularJs에 숨겨져 있습니까? (0) | 2023.02.26 |
각도 JS 크기 조정 가능한 div 지시어 (0) | 2023.02.26 |
Play 2.x: 공통 버튼을 사용하여 AJAX 요청을 만드는 방법 (0) | 2023.02.26 |