wp-includes/class-wp-customize-control.php 1 location
|
@@ 506-507 (lines=2) @@
|
503 |
|
|
504 |
|
<select <?php $this->link(); ?>> |
505 |
|
<?php |
506 |
|
foreach ( $this->choices as $value => $label ) |
507 |
|
echo '<option value="' . esc_attr( $value ) . '"' . selected( $this->value(), $value, false ) . '>' . $label . '</option>'; |
508 |
|
?> |
509 |
|
</select> |
510 |
|
</label> |
wp-includes/customize/class-wp-customize-nav-menu-location-control.php 1 location
|
@@ 74-76 (lines=3) @@
|
71 |
|
|
72 |
|
<select <?php $this->link(); ?>> |
73 |
|
<?php |
74 |
|
foreach ( $this->choices as $value => $label ) : |
75 |
|
echo '<option value="' . esc_attr( $value ) . '"' . selected( $this->value(), $value, false ) . '>' . $label . '</option>'; |
76 |
|
endforeach; |
77 |
|
?> |
78 |
|
</select> |
79 |
|
</label> |