我最近的帖子中有数字值,这些值是通过高级自定义字段放置的。我希望能够将数据从帖子中提取到另一个页面。这可以通过一个 ID 轻松完成: https ://www.advancedcustomfields.com/resources/how-to-get-values-from-another-post/ 但我无法完成的是从最近的帖子中获取此信息。ACF 支持网站没有提及最新的。
<?php
$args = array( 'numberposts' => '1' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
// acf query in here. not included for brevity.
endif;
}
wp_reset_query();
?>