从ID数组中获取标题

时间:2013-11-11 作者:marcelo2605

我有两种自定义的帖子类型,称为演员和电影。在电影中,我有一个自定义的元框,可以从演员的帖子类型中获取数据。

当在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

1 个回复
SO网友:Maruti Mohanty

你可以利用ids 在里面$actor 以下是获得演员头衔的方法。

$args = array(
    \'post_type\' => \'actors\',
    \'post__in\'  => $actors,
);

$actors_posts = new WP_Query( $args );

if( $actors_posts->have_posts() ) :
    while( $actors_posts->have_posts() ) : 
        $actors_posts->the_post();
    ?>
        <h2><?php the_title() ?></h2>
    <?php endwhile; else: ?>
        echo \'Oops, there are no posts.\';
<?php endif; ?>

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post