我正在尝试使用ACF字段从主循环外部的permalink获取缩略图和标题:
<?php
$post_id = get_field(\'1_main_post\');
if( $post_id ): ?>
<a href="<?php echo get_the_permalink($post_id); ?>">
<div class="top_post">
<div class="top_post_img">
<?php the_post_thumbnail( \'post_cover\' ); ?>
<h2><?php the_title(); ?></h2>
</div>
</div>
</a>
<?php endif; ?>
?>
但我从当前页面(而不是所选页面)接收post\\u缩略图和标题。有人能看看吗?