ページIDが2の場合
<?php
$acf_field = get_field( 'name', 2, false );
echo $acf_field
; ?>
各投稿の場合
<?php
$acf_field = get_field( 'name', $post->ID, false );
echo $acf_field
; ?>
参考:https://yuki.world/advanced-custom-fields-wysiwyg-editor-autop-remove/