我想将一些WP帖子附加到普通搜索功能但是当我运行wp_get_recent_posts函数(带有追加和数组中的帖子ID)时,我没有得到我想在结果中附加的帖子,我在做什么有什么不对吗?
$include = array(1, 2);
$args = array(
'showposts' => 10,
'tag_id' => '123',
'post_status' => 'publish',
'exclude' => $current_id,
'orderby' => 'post_date',
'append' => $include,
);
$entries = wp_get_recent_posts($args, 'ARRAY_A');
如果我删除了tag_id参数,那么我想要追加的帖子会包含在结果中,似乎WP也会使用其他参数过滤附加的帖子,是否有解决方法?