acf/get_post_types
filter
Використання
add_filter( 'acf/get_post_types', 'wp_kama_acf_get_post_types_filter', 10, 2); /** * Function for `acf/get_post_types` filter-hook. * * @param $post_types * @param $args * * @return */ function wp_kama_acf_get_post_types_filter( $post_types, $args ){ // Filter... return $post_types; }
- $post_types
- –
- $args
- –
Де викликається хук
acf/get_post_types
Де використовується хук в Advanced Custom Fields
acf/includes/third-party.php 46
add_filter( 'acf/get_post_types', array( $this, 'ee_get_post_types' ), 10, 2 );