acf/schema/post_field_objects/post_type=
acf/schema/post_field_objects/post_type=
Appears in: advanced-custom-fields.6.8.0
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.8.0apply_filters('acf/schema/post_field_objects/post_type=') is found 1 times:
- /src/AI/GEO/Outputs/Posts.php line 137
* * @param array|null $field_objects The field objects array, or null to use default behavior. * @param WP_Post $post The post object. */ $field_objects = apply_filters( 'acf/schema/post_field_objects/post_type=' . $post_type, $field_objects, $post ); // If no custom field objects were provided, get them from the post. if ( null === $field_objects ) { // Get all ACF field objects for this post without formatting to get raw ACF storage format. $field_objects = get_field_objects( $post->ID, false ); }