| 1 | 18c18
|
|---|
| 2 | < $unique_id = twentytwenty_unique_id( 'search-form-' );
|
|---|
| 3 | ---
|
|---|
| 4 | > $twentytwenty_unique_id = twentytwenty_unique_id( 'search-form' );
|
|---|
| 5 | 20c20
|
|---|
| 6 | < $aria_label = ! empty( $args['label'] ) ? 'aria-label="' . esc_attr( $args['label'] ) . '"' : '';
|
|---|
| 7 | ---
|
|---|
| 8 | > $twentytwenty_aria_label = ! empty( $args['label'] ) ? 'aria-label="' . esc_attr( $args['label'] ) . '"' : '';
|
|---|
| 9 | 22c22
|
|---|
| 10 | < <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( '/' ) ); ?>">
|
|---|
| 11 | ---
|
|---|
| 12 | > <form role="search" <?php echo $twentytwenty_aria_label; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaped above. ?> method="get" class="search-form" action="<?php echo esc_url( home_url( '/' ) ); ?>">
|
|---|