LoginSignup
5
6

More than 5 years have passed since last update.

WordPress、特定のカテゴリーを除外

Last updated at Posted at 2014-06-24

WordPress、特定のカテゴリーを除外

■about

WordPress、特定のカテゴリーを除外
get_postsの引数に入れるカテゴリーを扱うcatにカテゴリーIDを設定します。

■code

php
$get_posts_args = array(
//23,25を選ぶ
    'category__and' => array( 23,25 ),
//ID60を選ばない
    'cat' => -60,
    'numberposts' => 2,
    'order' => 'DESC',
);

■reference

特定のカテゴリーを除外して表示する方法|WordPressテーマカスタマイズ
http://wpcos.com/?p=8150

5
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
6