この記事は最後に更新してから1年以上経過しています。
説明
投稿タグの絞り込みは、カテゴリーに似ているけど微妙に違っている。今日は、昨日投稿した「query_posts(WP_Queryクラス)でカテゴリーを絞り込む」の続きとして、投稿タグの絞り込みついてまとめてみる。まずはquery_posts(WP_Queryクラス)の投稿タグに関連するパラメータを再確認。
パラメータ | データ | 例 |
---|---|---|
tag_id | 投稿タグのIDを指定 | 'tag_id=21' |
tag__in | 投稿タグのIDを配列で指定 | array( 'tag__in'=>array( 21, 23 ) ) |
tag__not_in | 投稿タグのIDを配列で指定 | array( 'tag__not_in'=>array( 21, 23 ) ) |
tag__and | 投稿タグのIDを配列で指定 | array( 'tag__and'=>array( 21, 23 ) ) |
tag | 投稿タグのスラッグを指定(複数指定する場合は「,」または「+」で区切る) | 'tag=abc,def' |
tag_slug__in | 投稿タグのスラッグを配列で指定 | 'array( 'tag_slug__in'=>array( 'abc', 'def' ) ) |
tag_slug__and | 投稿タグのスラッグを配列で指定 | 'array( 'tag_slug__and'=>array( 'abc', 'def' ) ) |
tag_id
'tag_id'は投稿タグが指定された投稿情報を絞り込む。指定できる投稿タグのIDは常に1つのみ。query_posts( 'tag_id=21' );
query_posts( array(
'tax_query' => array(
array(
'taxonomy'=>'post_tag',
'terms'=>array( 21 ),
'include_children'=>true,
'field'=>'term_id',
'operator'=>'IN'
),
'relation' => 'AND'
)
)
);
tag__in
'tag__in'は複数の投稿タグのIDを指定し、その何れかの投稿タグが指定された投稿情報を絞り込む。query_posts( array( 'tag__in'=>array( 21, 23 ) );
query_posts( array(
'tax_query' => array(
array(
'taxonomy'=>'post_tag',
'terms'=>array( 21, 23 ),
'include_children'=>true,
'field'=>'term_id',
'operator'=>'IN'
),
'relation' => 'AND'
)
)
);
tag__not_in
'tag__not_in'は複数の投稿タグのIDを指定し、その何れかの投稿タグも指定されていない投稿情報を絞り込む。query_posts( array( 'tag__not_in'=>array( 21, 23 ) );
query_posts( array(
'tax_query' => array(
array(
'taxonomy'=>'post_tag',
'terms'=>array( 21, 23 ),
'include_children'=>true,
'field'=>'term_id',
'operator'=>'NOT IN'
),
'relation' => 'AND'
)
)
);
tag__and
'tag__and'は複数の投稿タグのIDを指定し、そのすべての投稿タグが指定されている投稿情報を絞り込む。query_posts( array( 'tag__and'=>array( 21, 23 ) );
query_posts( array(
'tax_query' => array(
array(
'taxonomy'=>'post_tag',
'terms'=>array( 21, 23 ),
'include_children'=>true,
'field'=>'term_id',
'operator'=>'AND'
),
'relation' => 'AND'
)
)
);
tag_slug__in
これまでの流れでは'tag'の順番になるが、'tag'はパラメータの指定内容によって変化があるので、先に'tag_slug__in'を取り上げる。'tag_slug__in'は'tag__in'と同様に複数の投稿タグを指定し、その何れかが指定された投稿情報を絞り込む。'tag__in'との違いは、IDではなく、スラッグを指定できるところである。query_posts( array( 'tag_slug__in'=>array( 'good', 'bad' ) );
query_posts( array(
'tax_query' => array(
array(
'taxonomy'=>'post_tag',
'terms'=>array( 'good', 'bad' ),
'include_children'=>true,
'field'=>'slug',
'operator'=>'IN'
),
'relation' => 'AND'
)
)
);
tag_slug__and
'tag_slug__and'は'tag__and'のスタッグ版。投稿タグすべてが指定されている投稿情報を絞り込む。query_posts( array( 'tag_slug__and'=>array( 'good', 'bad' ) );
query_posts( array(
'tax_query' => array(
array(
'taxonomy'=>'post_tag',
'terms'=>array( 'good', 'bad' ),
'include_children'=>true,
'field'=>'slug',
'operator'=>'AND'
),
'relation' => 'AND'
)
)
);
tag
'tag'は、'tag_slug__in'や'tag_slug__and'と同様に、投稿タグのスラッグを指定して使用するが、複数の場合でも配列ではなく、スラッグを「,」または「+」で区切って文字列で指定する。この時「,」で区切ると'tag_slug__in'と同様の意味になり、「+」で区切ると'tag_slug__and'と同様の意味になる。つまり
query_posts( 'tag=good,bad' );
query_posts( array( 'tag_slug__in'=>array( 'good', 'bad' ) );
query_posts( 'tag=good+bad' );
query_posts( array( 'tag_slug__and'=>array( 'good', 'bad' ) );
昨日はカテゴリー、今日は投稿タグの絞り込みについて整理したわけだが、場合によってはこれらを組み合わせで使用することがあるだろう。また、標準テーマのTwentyElevenの短冊ウィジェットのように、投稿フォーマットで絞り込むことも可能である。それらについては、次の機会に紹介する。
最終更新 : 2011年09月14日 18:15
関連
お勧め
is_paged(2018年5月27日 更新)
bool is_paged( )
要求されているページが、分割された2ページ目以降(リクエストURLが/[任意]/page/2のような場合)か調べる。
get_next_image_link(2021年7月25日 更新)
string get_next_image_link( [ string | int[] $size = 'thumbnail' [ , string | false $text = false ] ] )
次の添付ファイルへのリンクを取得する。
site_url(2021年7月23日 更新)
string site_url( [ string $path = '' [ , string $scheme = null ] ] )
現在のブログ(サイト)のサイトURLを取得する。サイトURLは、管理者ページの「設定」-「一般」の「WordPressのアドレス(URL)」のこと。get_dirsize(2019年5月9日 更新)
int | bool get_dirsize( string $directory [ , int $max_execution_time = null ] )
ディレクトリの使用量を取得する。
nocache_headers(2018年5月27日 更新)
void nocache_headers( )
ブラウザのキャッシュを無効にするHTTPヘッダーを出力する。