I’m trying to replace the search form by my own.
An example plugin:
<?php
/*
Author: whatever
Plugin Name: Some Name
Plugin URI:
Text Domain: some-domain
Version: 1.0
*/
function custom_search($form)
{
$form = "testing<form method = 'get' id = 'searchform' action = ' ".site_url()." ' >";
$form .= "<div><label class = 'hidden' for='s'>". __("Search for: ") . "</label>";
$form .= "<input type = 'text' value=' ". esc_attr(apply_filters('the_search_query', get_search_query())) ." ' name='s' id='s' />";
$form .= "<input type = 'submit' id='searchsubmit' value=' ".esc_attr(__('Look for it'))." ' />";
$form .= "</div>";
$form .= "</form>";
return $form;
}
add_filter('get_search_form', 'custom_search');
Result, doesn’t work.
I’m using the latest WordPress with twentyeleven theme.
What am I missing here?!?
EDIT: It appears that if the theme has searchform.php file, this filter will be overridden by that file. So basically filter only works if the theme doesn’t have searchform.php. Now that is just stupid..
This is a result of a well known WordPress bug in the
get_search_form( $echo )
function will ignore the $echo argument and always echo jf you have a searchform.php template file in your theme.It’s a crap function, with a 2 year old trac ticket. Until they fix it, there are few workarounds:
1. Use
file_get_contents()
– but won’t parse the PHP2. Use custom function with the get_searchform hook (not the actual function)
3. Or use simple output buffering to capture the output as a variable;
This page has examples for all 3 methods