acf get field from specific product code example
Example 1: get field acf
$content = get_field('content', $post_id);
Example 2: get field object acf
get_field_object('content', post_id);
$content = get_field('content', $post_id);
get_field_object('content', post_id);