search bar

PHOTO EMBED

Thu Sep 01 2022 06:08:06 GMT+0000 (Coordinated Universal Time)

Saved by @Parth108 #php

<?php 
// Custom place to add the search bar
echo do_shortcode('[display_search_form]'); 
// function.php searchbar shortcode created
function shapeSpace_display_search_form() {
	$search_form = '<form method="get" id="search-form-alt" action="'. esc_url(home_url('/')) .'">
		<input type="text" name="s" id="s" placeholder="Search..">
	</form>';
	return $search_form;
}
add_shortcode('display_search_form', 'shapeSpace_display_search_form'); ?>
content_copyCOPY