wpseek.com
A WordPress-centric search engine for devs and theme authors



add_custom_image_header › WordPress Function

Since2.1.0
Deprecated3.4.0
add_custom_image_header ( $wp_head_callback, $admin_head_callback, $admin_preview_callback = '' )
Parameters: (3)
  • (callable) $wp_head_callback Call on the {@see 'wp_head'} action.
    Required: Yes
  • (callable) $admin_head_callback Call on custom header administration screen.
    Required: Yes
  • (callable) $admin_preview_callback Output a custom header image div on the custom header administration screen. Optional.
    Required: No
    Default: (empty)
See:
Defined at:
Codex:

Add callbacks for image header display.



Source

function add_custom_image_header( $wp_head_callback, $admin_head_callback, $admin_preview_callback = '' ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'add_theme_support( \'custom-header\', $args )' );
	$args = array(
		'wp-head-callback'    => $wp_head_callback,
		'admin-head-callback' => $admin_head_callback,
	);
	if ( $admin_preview_callback )
		$args['admin-preview-callback'] = $admin_preview_callback;
	return add_theme_support( 'custom-header', $args );
}