タクソノミーのタームアーカイブのためにパーマリンクを返すか、タームが存在しない場合WP_Error オブジェクトを返します。
Returns permalink for a taxonomy term archive, or a WP_Error object if the term does not exist.
目次
get_term_linkのファンクションタグ使用方法
[php][/php]get_term_linkのパラメーター
$term
(object/int/string) (required) タームオブジェクト/タームID/タームスラッグのリンクが取得されます。
デフォルト:なし
(object/int/string) (required) The term object / term ID / term slug whose link will be retrieved.
Default: None
$taxonomy
(string) (required) タクソノミーのスラッグ。あなたが最初のパラメーターにタームオブジェクトを渡す場合は必要ありません。
デフォルト:なし
(string) (required) The taxonomy slug. NOT required if you pass the term object in the first parameter
Default: None
戻り値
URL (string)
タクソノミーのタームアーカイブへのURL
URL to taxonomy term archive.
WP_Error (object)
タームが存在しない場合のエラー。
Error if term does not exist.
例
[php]$terms = get_terms(‘species’);echo ‘
コメント