Count the number of times the search form template gets included on a page
Just few simple ideas: A) Here’s one suggestion using the get_search_form filter with a static variable to handle the instance counting: add_filter( ‘get_search_form’, function( $form ) { static $instance = 0; $instance++; // Setup your form here with the $instance variable as needed: $form = ‘<form>…</form>’; return $form; } ); B) Another workaround would be … Read more