WP_Customize_Header_Image_Control::prepare_control
Prepares the control.
Method of the class: WP_Customize_Header_Image_Control{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Customize_Header_Image_Control = new WP_Customize_Header_Image_Control(); $WP_Customize_Header_Image_Control->prepare_control();
Notes
- Global. Custom_Image_Header.
$custom_image_header
Changelog
| Since 3.9.0 | Introduced. |
WP_Customize_Header_Image_Control::prepare_control() WP Customize Header Image Control::prepare control code WP 7.0.2
public function prepare_control() {
global $custom_image_header;
if ( empty( $custom_image_header ) ) {
return;
}
add_action( 'customize_controls_print_footer_scripts', array( $this, 'print_header_image_template' ) );
// Process default headers and uploaded headers.
$custom_image_header->process_default_headers();
$this->default_headers = $custom_image_header->get_default_header_images();
$this->uploaded_headers = $custom_image_header->get_uploaded_header_images();
}