我有两种自定义的帖子类型,称为演员和电影。在电影中,我有一个自定义的元框,可以从演员的帖子类型中获取数据。
当在movie post中选择演员时,值(post\\u id、meta\\u key和meta\\u值)存储在Posteta表中。
所以我建立了一个页面来显示所有电影信息。因此,我使用的是WP_查询:
<?php
$args_movie = array(\'post_type\' => \'movie\',\'posts_per_page\' => -1);
$movie_posts = new WP_Query($args_movie);
if($movie_posts->have_posts()) :
while($movie_posts->have_posts()) :
$movie_posts->the_post();
?>
<h2><?php the_title() ?></h2>
<?php endwhile; else: ?>
Oops, there are no posts.
<?php endif; ?>
这对我来说很好。现在,我想展示与每部电影相关的所有演员。此脚本返回ID数组:
$actors= get_post_meta( get_the_ID(), \'actors\'); print_r($actors);
但是我如何使用这个数组来获得演员的头衔呢?
SOLVED
$args = array(\'post_type\' => \'actors\',\'orderby\' => \'ASC\',\'post__in\' => $areas);
more info