acf/load_{$this->hook_name}
acf/load_{$this->hook_name}
Appears in: advanced-custom-fields.6.2.2
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.2.2apply_filters('acf/load_{$this->hook_name}') is found 2 times:
- /includes/class-acf-internal-post-type.php line 120116117118119120121122123124125126
* @since 5.0.0
*
* @param
array
$post
The post
array
.
*/
$post
= apply_filters(
"acf/load_{$this->hook_name}"
,
$post
);
// Store field group using aliases to also find via key, ID and name.
$store
->set(
$post
[
'key'
],
$post
);
$store
->alias(
$post
[
'key'
],
$post
[
'ID'
] );
return
$post
;
- /includes/post-types/class-acf-field-group.php line 140136137138139140141142143144145146
* @since 5.0.0
*
* @param
array
$post
The post
array
.
*/
$post
= apply_filters(
"acf/load_{$this->hook_name}"
,
$post
);
// Store field group using aliasses to also find via key, ID and name.
$store
->set(
$post
[
'key'
],
$post
);
$store
->alias(
$post
[
'key'
],
$post
[
'ID'
] );
return
$post
;