我应该创建一个页面,在那里你可以查看特定自定义帖子类型的所有视频(oembed字段(。
示例:自定义帖子类型=项目
项目内部有4篇文章,其中每一篇都上传了4个视频。
所以我的问题是:如何构建我的功能,使其能够提取所有文章的视频并在单个页面中显示?
尝试此代码,但更改自定义视频字段的密钥
$args = [
'post_type' => 'project', // your custom post type
'post_status' => 'publish',
];
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) { $loop->the_post();
$video = get_field('video', get_the_ID()); // check custom field key
print $video;
}
wp_reset_postdata();