WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Plugin API/Action Reference/edit category form

Description

The edit_category_form action/hook can be used to perform additional actions on the edit category screen. For example, you can add form fields in order to save additional information for a particular category.

The hook passes one parameter: the tag object.

Usage

<?php add_action( 'edit_category_form', 'function_name' ); ?>

where "function_name" is the name of the function to be called.