src/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> |
src/wp-includes/class-wp-customize-control.php 1 location
|
@@ 546-547 (lines=2) @@
|
543 |
|
|
544 |
|
<select <?php $this->link(); ?>> |
545 |
|
<?php |
546 |
|
foreach ( $this->choices as $value => $label ) |
547 |
|
echo '<option value="' . esc_attr( $value ) . '"' . selected( $this->value(), $value, false ) . '>' . $label . '</option>'; |
548 |
|
?> |
549 |
|
</select> |
550 |
|
</label> |