我使用一个自定义元框输出特定帖子类型中的帖子ID列表(本例中为“发布”)。有没有一种方法可以将这个数组输出到一个自定义循环中,以便只显示具有这些ID的帖子?
这是我正在使用的代码;
元盒阵列
$related = get_post_meta( get_the_ID(), \'ps_related-publications\', false );
foreach ( $related as $meta );
WP\\U查询循环
$related_publication_widget = new WP_Query( array (
\'post_type\' => \'publications\',
\'p\' => $meta,
\'posts_per_page\' => \'-1\',
));while ( $related_publication_widget->have_posts() ) :
$related_publication_widget->the_post();
由于ID只作为数字输出(即,在查询中没有分隔ID所需的“,”,因此它只显示最新的帖子,而不是循环中定义的所有帖子。
有什么想法吗?