我只需要一个标题或(帖子ID),然后我需要关联的自定义字段显示。所以基本上我可能有多个帖子具有相同的POST ID关联,以及相同的自定义字段值但不同的帖子类型。
请参阅此处我想要实现的目标:
<ul>
<?php
global $post;
$author_name = get_field('one');
$args = array( 'posts_per_page' => -1,
'post_type'=> 'design',
'post_id' => 1122,
'author_name' => $author_name
);
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<?php the_field('one'); ?>
<?php the_field('designs'); ?>
<?php endforeach; ?>
</ul>
目前显示如下:
Post 1122
Hello
Post 1122
Hey there
我希望它显示如下:
Post 1122
Hello
Hey there
Post 1445
Hi Now
Okay There
etc. etc.