add_category_form_pre action-hook . WP 2.1.0
Deprecated in 3.0.0. It is no longer supported and can be removed in future releases. Use {$taxonomy}_pre_add_form
instead.
Deprecated: 3.0.0 Use {$taxonomy}_pre_add_form instead.
Fires before the Add Category form.
Usage
add_action( 'add_category_form_pre', 'action_function_name_2540' ); function action_function_name_2540( $arg ){ // action... }
- $arg(object)
- Optional arguments cast to an object.
Where the hook is called
In file:
/wp-admin/edit-tags.php
add_category_form_pre
wp-admin/edit-tags.php 337
do_action( 'add_category_form_pre', (object) array( 'parent' => 0 ) );