【发布时间】:2019-08-09 20:42:39
【问题描述】:
我可以使用wp_get_recent_posts 函数中的“排除”数组来排除精选帖子吗?我有一个名为 NS Featured Posts 的插件,它通过 wp 查询中的一个键提取精选帖子,即:
$custom_query = new WP_Query(
array(
'post_type' => 'post',
'meta_key' => '_is_ns_featured_post',
'meta_value' => 'yes'
)
);
我能否以某种方式使用它来定位和排除 wp_get_recent_posts 调用中的 NS 精选帖子,例如:
$recent_posts = wp_get_recent_posts(array(
'numberposts' => 3,
'exclude' => (the ns featured posts)
));
感谢您的任何见解。
【问题讨论】: