Avoid fatal error in the customizer when the current theme doesn't support custom headers. Props c3mdigital. fixes #21515
git-svn-id: http://core.svn.wordpress.org/trunk@21497 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cbd6a8becd
commit
1fd3c5471e
|
@ -750,6 +750,8 @@ class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control {
|
|||
*/
|
||||
public function prepare_control() {
|
||||
global $custom_image_header;
|
||||
if ( empty( $custom_image_header ) )
|
||||
return parent::prepare_control();
|
||||
|
||||
// Process default headers and uploaded headers.
|
||||
$custom_image_header->process_default_headers();
|
||||
|
|
Loading…
Reference in New Issue