我需要你的帮助,我已经排除了在克利伯主题商店我该怎么办。我的代码不起作用,请帮助
$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
) );
请让我等你的回答。
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
) );