diff --git a/searchform.php b/searchform.php
index 21e6efb..4ba6a05 100755
a
|
b
|
|
17 | 17 | */ |
18 | 18 | $unique_id = twentytwenty_unique_id( 'search-form-' ); |
19 | 19 | |
20 | | $aria_label = ! empty( $args['label'] ) ? 'aria-label="' . esc_attr( $args['label'] ) . '"' : ''; |
| 20 | $aria_label = ! empty( $args['aria_label'] ) ? 'aria-label="' . esc_attr( $args['aria_label'] ) . '"' : ''; |
21 | 21 | ?> |
22 | 22 | <form role="search" <?php echo $aria_label; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped above. ?> method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>"> |
23 | 23 | <label for="<?php echo esc_attr( $unique_id ); ?>"> |