diff --git a/wp-content/themes/twentytwenty/searchform.php b/wp-content/themes/twentytwenty/searchform.php index 027127b208..2acf8308b8 100644 --- a/wp-content/themes/twentytwenty/searchform.php +++ b/wp-content/themes/twentytwenty/searchform.php @@ -15,14 +15,14 @@ * Generate a unique ID for each form and a string containing an aria-label * if one was passed to get_search_form() in the args array. */ -$unique_id = twentytwenty_unique_id( 'search-form-' ); +$twentytwenty_unique_id = twentytwenty_unique_id( 'search-form-' ); -$aria_label = ! empty( $args['label'] ) ? 'aria-label="' . esc_attr( $args['label'] ) . '"' : ''; +$twentytwenty_aria_label = ! empty( $args['label'] ) ? 'aria-label="' . esc_attr( $args['label'] ) . '"' : ''; ?> -