Skip to content

Instantly share code, notes, and snippets.

@kachi
Created April 3, 2012 09:15
Show Gist options
  • Select an option

  • Save kachi/2290604 to your computer and use it in GitHub Desktop.

Select an option

Save kachi/2290604 to your computer and use it in GitHub Desktop.
/*タグ名でタームの数を取得*/
<?php $tag_properties = get_term_by( 'name', 'foo', 'post_tag' ); echo $tag_properties->count; ?>
/*スラッグ名でタームの数を取得*/
<?php $tag_properties = get_term_by( 'slug', 'foo', 'post_tag' ); echo $tag_properties->count; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment