Priority File Manager
📁 public_html
Base Directory:
/home/toolrmtm/crazyespresso.com
/home/toolrmtm/crazyespresso.com/wp-content/plugins
/home/toolrmtm/crazyespresso.com/wp-content
/home/toolrmtm
/home
/home/toolrmtm/public_html
/var/www
/var/www/cgi-bin
/var/www/html
crazyespresso.com
/
wp-includes
/
customize
/home/toolrmtm/crazyespresso.com/wp-includes/customize
Name
Type
Size
Actions
📁
..
Folder
-
Delete
Rename
📄
class-wp-customize-background-image-control.php
File
1284
Delete
Rename
Edit
Download
📄
class-wp-customize-background-image-setting.php
File
639
Delete
Rename
Edit
Download
📄
class-wp-customize-background-position-control.php
File
3032
Delete
Rename
Edit
Download
📄
class-wp-customize-code-editor-control.php
File
2317
Delete
Rename
Edit
Download
📄
class-wp-customize-color-control.php
File
3209
Delete
Rename
Edit
Download
📄
class-wp-customize-cropped-image-control.php
File
1459
Delete
Rename
Edit
Download
📄
class-wp-customize-custom-css-setting.php
File
5284
Delete
Rename
Edit
Download
📄
class-wp-customize-date-time-control.php
File
9446
Delete
Rename
Edit
Download
📄
class-wp-customize-filter-setting.php
File
588
Delete
Rename
Edit
Download
📄
class-wp-customize-header-image-control.php
File
8029
Delete
Rename
Edit
Download
📄
class-wp-customize-header-image-setting.php
File
1782
Delete
Rename
Edit
Download
📄
class-wp-customize-image-control.php
File
1211
Delete
Rename
Edit
Download
📄
class-wp-customize-media-control.php
File
9405
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-auto-add-control.php
File
1122
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-control.php
File
2128
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-item-control.php
File
8157
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-item-setting.php
File
27869
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-location-control.php
File
2299
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-locations-control.php
File
2817
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-name-control.php
File
1131
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-section.php
File
716
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menu-setting.php
File
18936
Delete
Rename
Edit
Download
📄
class-wp-customize-nav-menus-panel.php
File
3309
Delete
Rename
Edit
Download
📄
class-wp-customize-new-menu-control.php
File
1710
Delete
Rename
Edit
Download
📄
class-wp-customize-new-menu-section.php
File
1693
Delete
Rename
Edit
Download
📄
class-wp-customize-partial.php
File
10568
Delete
Rename
Edit
Download
📄
class-wp-customize-selective-refresh.php
File
13843
Delete
Rename
Edit
Download
📄
class-wp-customize-sidebar-section.php
File
1059
Delete
Rename
Edit
Download
📄
class-wp-customize-site-icon-control.php
File
5163
Delete
Rename
Edit
Download
📄
class-wp-customize-theme-control.php
File
11889
Delete
Rename
Edit
Download
📄
class-wp-customize-themes-panel.php
File
3385
Delete
Rename
Edit
Download
📄
class-wp-customize-themes-section.php
File
6955
Delete
Rename
Edit
Download
📄
class-wp-customize-upload-control.php
File
1197
Delete
Rename
Edit
Download
📄
class-wp-sidebar-block-editor-control.php
File
686
Delete
Rename
Edit
Download
📄
class-wp-widget-area-customize-control.php
File
1719
Delete
Rename
Edit
Download
📄
class-wp-widget-form-customize-control.php
File
2646
Delete
Rename
Edit
Download
Upload
Create Folder
📝 Editing:
class-wp-customize-background-image-control.php
Size: 1,284 bytes
Lines: 67
Type: .php
💾 Save
Cancel
✕
<?php /** * Customize API: WP_Customize_Background_Image_Control class * * @package WordPress * @subpackage Customize * @since 4.4.0 */ /** * Customize Background Image Control class. * * @since 3.4.0 * * @see WP_Customize_Image_Control */ class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control { /** * Customize control type. * * @since 4.1.0 * @var string */ public $type = 'background'; /** * Constructor. * * @since 3.4.0 * @uses WP_Customize_Image_Control::__construct() * * @param WP_Customize_Manager $manager Customizer bootstrap instance. */ public function __construct( $manager ) { parent::__construct( $manager, 'background_image', array( 'label' => __( 'Background Image' ), 'section' => 'background_image', ) ); } /** * Enqueue control related scripts/styles. * * @since 4.1.0 */ public function enqueue() { parent::enqueue(); $custom_background = get_theme_support( 'custom-background' ); wp_localize_script( 'customize-controls', '_wpCustomizeBackground', array( 'defaults' => ! empty( $custom_background[0] ) ? $custom_background[0] : array(), 'nonces' => array( 'add' => wp_create_nonce( 'background-add' ), ), ) ); } }
✅ File saved successfully!