acf/load_{$this->hook_name}
acf/load_{$this->hook_name}
Appears in: advanced-custom-fields.6.2.0
Hook Type: filter
Displaying hooks found in version: advanced-custom-fields.6.2.0apply_filters('acf/load_{$this->hook_name}') is found 2 times:
- /includes/class-acf-internal-post-type.php line 120
* @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 140
* @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;