acf/post_type/registration_args filter-hookACF 1.0

Usage

add_filter( 'acf/post_type/registration_args', 'wp_kama_acf_post_type_registration_args_filter', 10, 2 );

/**
 * Function for `acf/post_type/registration_args` filter-hook.
 * 
 * @param  $args 
 * @param  $post 
 *
 * @return 
 */
function wp_kama_acf_post_type_registration_args_filter( $args, $post ){
	// filter...
	return $args;
}
$args
-
$post
-

Where the hook is called

ACF_Post_Type::get_post_type_args()
acf/post_type/registration_args
acf/includes/post-types/class-acf-post-type.php 643
return apply_filters( 'acf/post_type/registration_args', $args, $post );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.