我正在尝试获取5篇最新的帖子,并将其排除在已定义的数组中($排除)、粘性帖子和任何签出为特色帖子的帖子(即自定义字段“my\\u featured\\u post”设置为1)
我试过:
$args = array(\'post__not_in\' => $exclude,
\'ignore_sticky_posts\' => 1,
\'posts_per_page\' => 5,
\'meta_query\'=> array(
array(
\'key\'=>\'my_featured_post\',
\'value\'=>\'1\',
\'compare\'=>\'!=\'
)
)
);
$query = new WP_Query($args);
以及:
$args = array(\'post__not_in\' => $exclude,
\'ignore_sticky_posts\' => 1,
\'paged\'=>1,
\'posts_per_page\' => 5,
\'meta_key\'=>\'my_featured_post\',
\'meta_value\'=>\'1\',
\'meta_compare\'=>"!="
);
都没有回复任何帖子。如果我在任一查询中删除对meta的引用,它将返回设置为“my\\u featured\\u posts”且未设置为“my\\u featured\\u posts”的混合帖子。
我做错了吗?
谢谢,gS