SO网友:Brooke.
如果我理解你想在单曲上同时展示这两篇文章的问题。类似这样的php应该作为第二个循环。
把这个放在第一个循环中。这样您就可以获得当前的帖子ID
$parent_id=the_ID();
// Second Loop
$query = new WP_Query( array ( \'post_type\' => \'TYPE1\', \'meta_key\' => $parent_id ) );
while ( $query->have_posts() ) : $query->the_post();
//normal loop stuff such as the_content();
echo \'<li>\';
the_title();
echo \'</li>\';
endwhile;