如何排除存储在剪贴式主题WordPress代码php中

时间:2015-11-19 作者:user1287087

我需要你的帮助,我已经排除了在克利伯主题商店我该怎么办。我的代码不起作用,请帮助

$cat_related = query_posts( array(
    \'post_type\' => APP_POST_TYPE,
    \'post_status\' => \'publish\',
    APP_TAX_CAT => $string_array, 
    \'ignore_sticky_posts\' => 1,
    \'paged\' => $paged,
    \'post__not_in\' => array($post->ID),
    \'category__not_in\' => $store_id // this is STORE ID

) );
请让我等你的回答。

1 个回复
SO网友:Kvvaradha

以数组格式放置类别id。就像下面的一样。

$cat_related = query_posts( array(
\'post_type\' => APP_POST_TYPE,
\'post_status\' => \'publish\',
APP_TAX_CAT => $string_array, 
\'ignore_sticky_posts\' => 1,
\'paged\' => $paged,
\'post__not_in\' => array($post->ID),
\'category__not_in\' => array (   $store_id )// this is STORE ID
 ) );

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post