WordPress : カテゴリ、タグの両方を含む記事一覧
WordPressでカテゴリ、タグの両方を含む記事一覧を取得したい場合。
query_posts(array(
‘category__and’ => array($cat,
‘tag__and’ => array($tag),
‘posts_per_page’=>’10,
‘paged’=>$paged)
);
if(have_posts()):while(have_posts()):the_post();
endwhile;endif;
posts_nav_link(’ ’,'« 新しい記事へ’,'過去の記事へ »’);
11 月 9th, 2010 by marupeke | No Comments »