| Conditions | 7 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 35 | public function outer_sections_css() { |
||
| 36 | echo '<style>'; |
||
| 37 | $css = ''; |
||
|
|
|||
| 38 | if ( ! empty( Kirki::$sections ) ) { |
||
| 39 | foreach ( Kirki::$sections as $section_args ) { |
||
| 40 | if ( isset( $section_args['id'] ) && isset( $section_args['type'] ) && 'outer' === $section_args['type'] || 'kirki-outer' === $section_args['type'] ) { |
||
| 41 | echo '#customize-theme-controls li#accordion-section-' . esc_html( $section_args['id'] ) . '{display:list-item!important;}'; |
||
| 42 | } |
||
| 43 | } |
||
| 44 | } |
||
| 45 | echo '</style>'; |
||
| 46 | } |
||
| 48 |