Skip to content

Instantly share code, notes, and snippets.

@guzuri
Created October 23, 2013 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guzuri/7115596 to your computer and use it in GitHub Desktop.
Save guzuri/7115596 to your computer and use it in GitHub Desktop.
タクソノミーのスラッグから各種情報取得
<?php
//IDの取得
echo get_term_by('slug',$term,$taxonomy)->term_id;
//名前の取得
echo get_term_by('slug',$term,$taxonomy)->name;
//URLの取得
echo get_term_link($term,$taxonomy);
/*
$taxonomy = タクソノミー名
$term = スラッグ名
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment