Conditions | 9 |
Paths | 5 |
Total Lines | 20 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | protected function process_output( $output, $value ) { |
||
25 | $output = wp_parse_args( |
||
26 | $output, |
||
27 | array( |
||
28 | 'media_query' => 'global', |
||
29 | 'element' => 'body', |
||
30 | 'prefix' => '', |
||
31 | 'suffix' => '', |
||
32 | ) |
||
33 | ); |
||
34 | |||
35 | foreach ( array( 'background-image', 'background-color', 'background-repeat', 'background-position', 'background-size', 'background-attachment' ) as $property ) { |
||
36 | |||
37 | // See https://github.com/aristath/kirki/issues/1808. |
||
38 | if ( 'background-color' === $property && isset( $value['background-color'] ) && $value['background-color'] && ( ! isset( $value['background-image'] ) || empty( $value['background-image'] ) ) ) { |
||
39 | $this->styles[ $output['media_query'] ][ $output['element'] ]['background'] = $output['prefix'] . $this->process_property_value( $property, $value[ $property ] ) . $output['suffix']; |
||
|
|||
40 | } |
||
41 | |||
42 | if ( isset( $value[ $property ] ) && ! empty( $value[ $property ] ) ) { |
||
43 | $this->styles[ $output['media_query'] ][ $output['element'] ][ $property ] = $output['prefix'] . $this->process_property_value( $property, $value[ $property ] ) . $output['suffix']; |
||
44 | } |
||
48 |