category_edit_form_fields хук-событиеWP 3.0.0

Fires after the Edit Term form fields are displayed.

Это один из вариантов динамического хука (taxonomy)_edit_form_fields

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

add_action( 'category_edit_form_fields', 'wp_kama_category_edit_form_fields_action', 10, 2 );

/**
 * Function for `category_edit_form_fields` action-hook.
 * 
 * @param WP_Term $tag      Current taxonomy term object.
 * @param string  $taxonomy Current taxonomy slug.
 *
 * @return void
 */
function wp_kama_category_edit_form_fields_action( $tag, $taxonomy ){

	// action...
}
$tag(WP_Term)
Current taxonomy term object.
$taxonomy(строка)
Current taxonomy slug.

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

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

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

В файле: /wp-admin/edit-tag-form.php
category_edit_form_fields
wp-admin/edit-tag-form.php 254
do_action( "{$taxonomy}_edit_form_fields", $tag, $taxonomy );

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

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