custom_header_options action-hookWP 3.1.0

Fires just before the submit button in the custom header options form.

Usage

add_action( 'custom_header_options', 'wp_kama_custom_header_options_action' );

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

	// action...
}

Changelog

Since 3.1.0 Introduced.

Where the hook is called

Custom_Image_Header::step_1()
custom_header_options
wp-admin/includes/class-custom-image-header.php 809
do_action( 'custom_header_options' );

Where the hook is used in WordPress

Usage not found.