This commit is contained in:
2026-04-26 23:47:49 +02:00
parent 1b95f03d1e
commit b073e009d8
5288 changed files with 1112699 additions and 55536 deletions

View File

@@ -0,0 +1,20 @@
<?php
$search_videos_text = __( 'Search Videos', 'feeds-for-youtube' );
$search_placeholder_text = __( 'Search...', 'feeds-for-youtube' );
$submit_text = __( 'Submit', 'feeds-for-youtube' );
?>
<div id="sby_search" class="sby_search">
<div class="sby_sf_label">
<label for="sby_sf_input"><?php echo esc_html( $search_videos_text ); ?></label>
</div>
<div class="sby_sf_input">
<form role="search" action="" method="get">
<input id="sby_sf_input" type="search" name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $search_term ); ?>" placeholder="<?php echo esc_attr( $search_placeholder_text ); ?>">
<button type="submit"><?php echo esc_html( $submit_text ); ?></button>
</form>
</div>
<?php
include sby_get_feed_template_part( 'results', $sby_settings );
?>
</div>