Priority File Manager

📁 public_html
Base Directory:
/home/toolrmtm/crazyespresso.com/wp-includes/customize
NameTypeSizeActions
📁 .. Folder -
📄 class-wp-customize-background-image-control.php File 1284
Edit Download
📄 class-wp-customize-background-image-setting.php File 639
Edit Download
📄 class-wp-customize-background-position-control.php File 3032
Edit Download
📄 class-wp-customize-code-editor-control.php File 2317
Edit Download
📄 class-wp-customize-color-control.php File 3209
Edit Download
📄 class-wp-customize-cropped-image-control.php File 1459
Edit Download
📄 class-wp-customize-custom-css-setting.php File 5284
Edit Download
📄 class-wp-customize-date-time-control.php File 9446
Edit Download
📄 class-wp-customize-filter-setting.php File 588
Edit Download
📄 class-wp-customize-header-image-control.php File 8029
Edit Download
📄 class-wp-customize-header-image-setting.php File 1782
Edit Download
📄 class-wp-customize-image-control.php File 1211
Edit Download
📄 class-wp-customize-media-control.php File 9405
Edit Download
📄 class-wp-customize-nav-menu-auto-add-control.php File 1122
Edit Download
📄 class-wp-customize-nav-menu-control.php File 2128
Edit Download
📄 class-wp-customize-nav-menu-item-control.php File 8157
Edit Download
📄 class-wp-customize-nav-menu-item-setting.php File 27869
Edit Download
📄 class-wp-customize-nav-menu-location-control.php File 2299
Edit Download
📄 class-wp-customize-nav-menu-locations-control.php File 2817
Edit Download
📄 class-wp-customize-nav-menu-name-control.php File 1131
Edit Download
📄 class-wp-customize-nav-menu-section.php File 716
Edit Download
📄 class-wp-customize-nav-menu-setting.php File 18936
Edit Download
📄 class-wp-customize-nav-menus-panel.php File 3309
Edit Download
📄 class-wp-customize-new-menu-control.php File 1710
Edit Download
📄 class-wp-customize-new-menu-section.php File 1693
Edit Download
📄 class-wp-customize-partial.php File 10568
Edit Download
📄 class-wp-customize-selective-refresh.php File 13843
Edit Download
📄 class-wp-customize-sidebar-section.php File 1059
Edit Download
📄 class-wp-customize-site-icon-control.php File 5163
Edit Download
📄 class-wp-customize-theme-control.php File 11889
Edit Download
📄 class-wp-customize-themes-panel.php File 3385
Edit Download
📄 class-wp-customize-themes-section.php File 6955
Edit Download
📄 class-wp-customize-upload-control.php File 1197
Edit Download
📄 class-wp-sidebar-block-editor-control.php File 686
Edit Download
📄 class-wp-widget-area-customize-control.php File 1719
Edit Download
📄 class-wp-widget-form-customize-control.php File 2646
Edit Download
__( 'Header Image' ), 'settings' => array( 'default' => 'header_image', 'data' => 'header_image_data', ), 'section' => 'header_image', 'removed' => 'remove-header', 'get_url' => 'get_header_image', ) ); } /** */ public function enqueue() { wp_enqueue_media(); wp_enqueue_script( 'customize-views' ); $this->prepare_control(); wp_localize_script( 'customize-views', '_wpCustomizeHeader', array( 'data' => array( 'width' => absint( get_theme_support( 'custom-header', 'width' ) ), 'height' => absint( get_theme_support( 'custom-header', 'height' ) ), 'flex-width' => absint( get_theme_support( 'custom-header', 'flex-width' ) ), 'flex-height' => absint( get_theme_support( 'custom-header', 'flex-height' ) ), 'currentImgSrc' => $this->get_current_image_src(), ), 'nonces' => array( 'add' => wp_create_nonce( 'header-add' ), 'remove' => wp_create_nonce( 'header-remove' ), ), 'uploads' => $this->uploaded_headers, 'defaults' => $this->default_headers, ) ); parent::enqueue(); } /** * @global Custom_Image_Header $custom_image_header */ 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(); } /** */ public function print_header_image_template() { ?> value(); if ( isset( $this->get_url ) ) { $src = call_user_func( $this->get_url, $src ); return $src; } } /** */ public function render_content() { $visibility = $this->get_current_image_src() ? '' : ' style="display:none" '; $width = absint( get_theme_support( 'custom-header', 'width' ) ); $height = absint( get_theme_support( 'custom-header', 'height' ) ); ?>
' . $this->label . ''; } ?>

%s × %s', $width, $height ) ); } elseif ( $width ) { printf( /* translators: %s: Header width in pixels. */ __( 'Click “Add Image” to upload an image file from your computer. Your theme works best with an image with a header width of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), sprintf( '%s', $width ) ); } else { printf( /* translators: %s: Header height in pixels. */ __( 'Click “Add Image” to upload an image file from your computer. Your theme works best with an image with a header height of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit.' ), sprintf( '%s', $height ) ); } ?>