Custom_Background::admin_page()
- Since
- 3.0.0
- Source
wp-admin/includes/class-custom-background.php:240
Compatibility
- WordPress
- since 3.0.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Performance profile
How much work a call to Custom_Background::admin_page() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Moderate
- Scaling
- Scales with input
- Instructions
- 98–492
- Plugin surface
- None
- Called by
- 0
Touches nothing outside its own arguments.
The body loops, so the work grows with how much data it finds.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 564.
Nothing here hands control to plugin code.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
do_action()one call below Custom_Background::admin_page()
Further down the call graph this can also reach option, query, cache, serialize and transient. Those are the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 190 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost Custom_Background::admin_page() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
!current_user_can() && empty($value) && !get_background_image() && !current_theme_supports() | 98–103 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 102–107 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && !current_theme_supports() | 104–109 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && current_theme_supports() | 108–113 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 108–113 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 112–117 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && current_theme_supports() | 114–119 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 118–123 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 122–127 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 126–131 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 126–131 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 128–133 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
178 further outcomes, up to 492 instructions
!current_user_can() && empty($value) && current_theme_supports() | 132–137 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 132–137 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 132–137 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 136–141 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 136–141 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 138–143 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && !current_theme_supports() | 139–144 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 142–147 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 142–147 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 143–148 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && !current_theme_supports() | 145–150 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && current_theme_supports() | 149–154 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 149–154 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 150–155 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 153–158 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && current_theme_supports() | 155–160 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 156–161 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 159–164 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 160–165 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 163–168 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 166–171 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 167–172 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 167–172 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 169–174 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 173–178 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 173–178 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 173–178 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 177–182 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 177–182 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && !current_theme_supports() | 178–183 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 179–184 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 182–187 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 183–188 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 183–188 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && !current_theme_supports() | 184 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && current_theme_supports() | 188–193 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 188 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 191–196 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 192–197 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && current_theme_supports() | 194 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 197–202 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 198 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 201–206 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 202–207 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 206–211 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 206–211 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 207–212 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 208 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 212–217 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 212 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 212 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 216–221 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 216–221 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 218 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && !current_theme_supports() | 219–224 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 222 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 222 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 223–228 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && !current_theme_supports() | 225 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && current_theme_supports() | 229–234 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && !current_theme_supports() | 229 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 230–235 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 233–238 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && current_theme_supports() | 235 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 236 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image === false && current_theme_supports() | 239 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 240–245 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 243–248 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 246 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 247–252 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 247–252 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 249 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 253–258 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && !current_theme_supports() | 253 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 253 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 257–262 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 257–262 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 259 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !get_background_image() && $default_image !== false && current_theme_supports() | 263 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 263 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 271–276 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 277 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 281–286 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 287 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 303–309 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 307–313 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 309–315 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 313–319 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 313–319 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 317–323 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 319–325 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 323–329 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && !current_theme_supports() | 327–333 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 331–337 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 331–337 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && !current_theme_supports() | 333–339 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && current_theme_supports() | 337–343 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 337–343 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 337–343 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 341–347 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 341–347 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && current_theme_supports() | 343–349 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 344–350 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 347–353 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 347–353 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 348–354 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 350–356 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 354–360 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 354–360 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 355–361 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 358–364 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 360–366 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 361–367 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 364–370 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 365–371 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && !current_theme_supports() | 368–374 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 371–377 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 372–378 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 372–378 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && !current_theme_supports() | 374–380 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && current_theme_supports() | 378–384 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 378–384 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 378–384 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 382–388 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 382–388 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 383–389 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && current_theme_supports() | 384–390 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 387–393 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 388–394 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 388–394 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && !current_theme_supports() | 389–390 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 393–399 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && !current_theme_supports() | 393–394 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 396–402 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 397–403 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && current_theme_supports() | 399–400 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 402–408 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image === false && current_theme_supports() | 403–404 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 406–412 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && !current_theme_supports() | 407–413 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 411–417 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 411–417 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 412–418 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && !current_theme_supports() | 413–414 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && current_theme_supports() | 417–423 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && !current_theme_supports() | 417–418 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 417–418 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 421–427 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 421–427 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && current_theme_supports() | 423–424 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 424–430 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && $default_image !== false && current_theme_supports() | 427–428 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 427–428 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 428–434 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && !current_theme_supports() | 430–431 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 434–440 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && !current_theme_supports() | 434–435 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 435–441 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 438–444 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && current_theme_supports() | 440–441 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 441–442 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image === false && current_theme_supports() | 444–445 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 445–451 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && !current_theme_supports() | 448–454 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
!current_user_can() && empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 451–452 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 452–458 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 452–458 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && !current_theme_supports() | 454–455 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && current_theme_supports() | 458–464 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && !current_theme_supports() | 458–459 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && !current_theme_supports() | 458–459 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 462–468 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 462–468 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && current_theme_supports() | 464–465 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && $default_image !== false && current_theme_supports() | 468–469 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image === false && current_theme_supports() | 468–469 | _e(), current_user_can(), _e(), _e(), get_background_color(), maybe_hash_hex_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image !== false && !current_theme_supports() | 476–482 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
empty($value) && get_background_image() && $default_image !== false && current_theme_supports() | 486–492 | _e(), current_user_can(), _e(), _e(), get_background_color(), get_background_image(), get_theme_mod(), set_url_scheme(), esc_url(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), get_theme_support(), get_background_image(), _e(), wp_nonce_field(), __(), submit_button(), _e(), current_user_can(), _e(), _e(), wp_nonce_field(), _x(), submit_button(), _e(), esc_attr_e(), esc_attr_e(), _e(), _e(), get_background_image(), __(), get_theme_support(), get_theme_mod(), get_theme_support(), get_theme_mod(), __(), __(), __(), __(), __(), __(), __(), __(), __(), __(), get_theme_support(), get_theme_mod(), selected(), _ex(), get_theme_support(), get_theme_mod(), selected(), _e(), get_theme_support(), get_theme_mod(), selected(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), _x(), get_theme_support(), get_theme_mod(), checked(), _e(), __(), current_theme_supports(), get_theme_support(), esc_attr(), get_background_color(), esc_attr(), wp_nonce_field(), submit_button() |
This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 564 | 98–492 | 16 | |
| 8.5 | 564 | 98–492 | 16 | |
| 8.4 | 564 | 98–492 | 16 | 6 fewer instructions than PHP 8.3 |
| 8.3 | 570 | 98–498 | 16 | |
| 8.2 | 570 | 98–498 | 16 | |
| 8.1 | 570 | 98–498 | 16 | |
| 7.4 | 570 | 98–498 | 16 |
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Uses · 22
- _e()Displays translated text.
- current_user_can()Returns whether the current user has the specified capability.
- __()Retrieves the translation of $text.
- admin_url()Retrieves the URL to the admin area for the current site.
- wp_admin_notice()Outputs an admin notice.
- esc_url()Checks and cleans a URL.
- home_url()Retrieves the URL for the current site where the front end is accessible.
- get_background_color()Retrieves value for custom background color.
- maybe_hash_hex_color()Ensures that any hex color is properly hashed.
- get_background_image()Retrieves background image for custom background.
- set_url_scheme()Sets the scheme for a URL.
- get_theme_mod()Retrieves theme modification value for the active theme.
Show all 22
- get_theme_support()Gets the theme support arguments passed when registering that support.
- wp_nonce_field()Retrieves or display nonce hidden field for forms.
- submit_button()Echoes a submit button, with provided text and appropriate class(es).
- _x()Retrieves translated string with gettext context.
- esc_attr_e()Displays translated text that has been escaped for safe use in an attribute.
- esc_attr()Escaping for HTML attributes.
- checked()Outputs the HTML checked attribute.
- selected()Outputs the HTML selected attribute.
- _ex()Displays translated string with gettext context.
- current_theme_supports()Checks a theme's support for a given feature.
Source code
public function admin_page() { ?><div class="wrap" id="custom-background"><h1><?php _e( 'Custom Background' ); ?></h1> <?php if ( current_user_can( 'customize' ) ) { $message = sprintf( /* translators: %s: URL to background image configuration in Customizer. */ __( 'You can now manage and live-preview Custom Backgrounds in the <a href="%s">Customizer</a>.' ), admin_url( 'customize.php?autofocus[control]=background_image' ) ); wp_admin_notice( $message, array( 'type' => 'info', 'additional_classes' => array( 'hide-if-no-customize' ), ) ); } if ( ! empty( $this->updated ) ) { $updated_message = sprintf( /* translators: %s: Home URL. */ __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), esc_url( home_url( '/' ) ) ); wp_admin_notice( $updated_message, array( 'id' => 'message', 'additional_classes' => array( 'updated' ), ) ); } ?> <h2><?php _e( 'Background Image' ); ?></h2> <table class="form-table" role="presentation"><tbody><tr><th scope="row"><?php _e( 'Preview' ); ?></th><td> <?php if ( $this->admin_image_div_callback ) { call_user_func( $this->admin_image_div_callback ); } else { $background_styles = ''; $bgcolor = get_background_color(); if ( $bgcolor ) { $background_styles .= 'background-color: ' . maybe_hash_hex_color( $bgcolor ) . ';'; } $background_image_thumb = get_background_image(); if ( $background_image_thumb ) { $background_image_thumb = esc_url( set_url_scheme( get_theme_mod( 'background_image_thumb', str_replace( '%', '%%', $background_image_thumb ) ) ) ); $background_position_x = get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ); $background_position_y = get_theme_mod( 'background_position_y', get_theme_support( 'custom-background', 'default-position-y' ) ); $background_size = get_theme_mod( 'background_size', get_theme_support( 'custom-background', 'default-size' ) ); $background_repeat = get_theme_mod( 'background_repeat', get_theme_support( 'custom-background', 'default-repeat' ) ); $background_attachment = get_theme_mod( 'background_attachment', get_theme_support( 'custom-background', 'default-attachment' ) ); // Background-image URL must be single quote, see below. $background_styles .= " background-image: url('$background_image_thumb');" . " background-size: $background_size;" . " background-position: $background_position_x $background_position_y;" . " background-repeat: $background_repeat;" . " background-attachment: $background_attachment;"; } ?> <div id="custom-background-image" style="<?php echo $background_styles; ?>"><?php // Must be double quote, see above. ?> <?php if ( $background_image_thumb ) { ?> <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /><br /> <img class="custom-background-image" src="<?php echo $background_image_thumb; ?>" style="visibility:hidden;" alt="" /> <?php } ?> </div> <?php } ?></td></tr>Changelog
Introduced in 3.0.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.9.7 tag, from
src/wp-admin/includes/class-custom-background.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.