Home › Forums › General Issues › Custom Fields on post Preview › Reply To: Custom Fields on post Preview
Addition (can’t edit):
If you’re using ACF Blocks, you’ll need this snippet
function fix_post_id_on_preview($null, $post_id) {
if ( is_preview() && $post_id !== 'options' && substr( $null, 0, 6 ) != 'block_' ) {
return get_the_ID();
}
else {
$acf_post_id = isset($post_id->ID) ? $post_id->ID : $post_id;
if (!empty($acf_post_id)) {
return $acf_post_id;
}
else {
return $null;
}
}
}
add_filter( 'acf/pre_load_post_id', 'fix_post_id_on_preview', 10, 2 );
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.