Support

Account

Home Forums ACF PRO Finding Post ID in Gutenberg Block Templates within WordPress Preview Reply To: Finding Post ID in Gutenberg Block Templates within WordPress Preview

  • Adding this function will solve the issue (compliments of another poster):

    function my_acf_post_id() {
    	if ( is_admin() && function_exists( 'acf_maybe_get_POST' ) ) :
    		return intval( acf_maybe_get_POST( 'post_id' ) );
    	else :
    		global $post;
    		return $post->ID;
    	endif;
    }