wp_nav_menu_item_custom_fields_customize_template хук-событиеWP 5.4.0

Fires at the end of the form field template for nav menu items in the customizer.

Additional fields can be rendered here and managed in JavaScript.

Использование

add_action( 'wp_nav_menu_item_custom_fields_customize_template', 'wp_kama_nav_menu_item_custom_fields_customize_template_action' );

/**
 * Function for `wp_nav_menu_item_custom_fields_customize_template` action-hook.
 * 
 * @return void
 */
function wp_kama_nav_menu_item_custom_fields_customize_template_action(){

	// action...
}

Список изменений

С версии 5.4.0 Введена.

Где вызывается хук

WP_Customize_Nav_Menu_Item_Control::content_template()
wp_nav_menu_item_custom_fields_customize_template
wp-includes/customize/class-wp-customize-nav-menu-item-control.php 150
do_action( 'wp_nav_menu_item_custom_fields_customize_template' );

Где используется хук в WordPress

Использование не найдено.