投稿と取得したタクソノミーで関連付けられているタクソノミーのタームのHTML文字列を返します。タームはそれぞれのタームをリストアップしたページにリンクします。
Returns an HTML string of taxonomy terms associated with a post and given taxonomy. Terms are linked to their respective term listing pages.
get_the_term_listのファンクションタグ使用方法
[php] [/php]get_the_term_listのパラメーター
$id
(int) (required)投稿ID。
デフォルト:0
(int) (required) Post ID
Default: 0
$taxonomy
(string|array) (required)タクソノミーの名前
デフォルト:なし
(string|array) (required) Name of taxonomy
Default: None
$before
(string) (optional)主要なテキスト
デフォルト:なし
(string) (optional) Leading text
Default: None
$sep
(string) (optional)タグを区切るには文字列
デフォルト:なし
(string) (optional) String to separate tags
Default: None
$after
(string) (optional)テキストの末尾
デフォルト:なし
(string) (optional) Trailing text
Default: None
戻り値
(string)
タクソノミータームのHTML文字列
(string)
HTML string of taxonomy terms.
基本な例
特定の投稿のために人タクソノミーからタームを出力するループ内で使用されます。
[php]ID, ‘people’, ‘People: ‘, ‘, ‘, ” ); ?> [/php]Used inside the loop this outputs the terms from the people taxonomy for a specific post.
これは、いかようにも返します。
[php]People:This would return something like.
Person 1,
Person 2, …[/php]
HTMLリストを返します
(x)htmlリストとして特定の投稿のためのスタイルのタクソノミーからタームを出力するループ内で使用されます。
[php]echo ‘Used inside the loop this outputs the terms from the styles taxonomy for a specific post as an (x)html list.
- ‘;
- ‘, ‘,
- ‘, ‘
echo get_the_term_list( $post->ID, ‘styles’, ‘
‘ );
echo ‘
‘;[/php]
これは、いかようにも返します。
[php] [/php]This would return something like.
変更ログ
Since: 2.5.0
ソースファイル
get_the_term_list()は、wp-includes/category-template.php内に位置しています。
get_the_term_list() is located in wp-includes/category-template.php.
関連ファンクションタグ
get_the_tag_list()
Terms: is_term(), term_exists(), get_objects_in_term(), get_term(), get_term_by(), get_term_children(), get_term_link(), get_terms(), get_the_terms(), get_the_term_list(), has_term(), sanitize term(), wp_get_object_terms(), wp_set_object_terms(), wp_get_post_terms(), wp_set_post_terms()
コメント