acf/include_field_types
Fires after field types має бути included.
Використання
add_action( 'acf/include_field_types', 'wp_kama_acf_include_field_types_action' );
/**
* Function for `acf/include_field_types` action-hook.
*
* @param int $major_version The major version of ACF.
*
* @return void
*/
function wp_kama_acf_include_field_types_action( $major_version ){
// action...
}- $major_version
(int) - The major version of ACF.
список змін
| З версії 5.0.0 | Введено. |
Де викликається хук
acf/acf.php 275
do_action( 'acf/include_field_types', ACF_MAJOR_VERSION );
Де використовується хук в Advanced Custom Fields
acf/pro/acf-pro.php 43
add_action( 'acf/include_field_types', array( $this, 'include_field_types' ), 5 );