<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: get_search_form() in wordpress</title>
	<atom:link href="http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/</link>
	<description></description>
	<lastBuildDate>Wed, 01 Sep 2010 23:07:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Steven McCurrach</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-637933</link>
		<dc:creator>Steven McCurrach</dc:creator>
		<pubDate>Thu, 03 Sep 2009 12:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-637933</guid>
		<description>Thanks alot for the help in regards to creating the searchform.php file!
I&#039;m bookmarking your site.</description>
		<content:encoded><![CDATA[<p>Thanks alot for the help in regards to creating the searchform.php file!<br />
I&#039;m bookmarking your site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suzanne</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-635633</link>
		<dc:creator>Suzanne</dc:creator>
		<pubDate>Sat, 11 Jul 2009 13:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-635633</guid>
		<description>Merci beaucoup Jennifer

Thank you very much!! I am new with wordpress and I was trying to find a way to have the search button in french or in english (with WPML plugin and default theme)

I took you code to create the seachform.php file and add this code:

&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;&quot; /&gt;

and it works fine ;-)
Suzanne</description>
		<content:encoded><![CDATA[<p>Merci beaucoup Jennifer</p>
<p>Thank you very much!! I am new with wordpress and I was trying to find a way to have the search button in french or in english (with WPML plugin and default theme)</p>
<p>I took you code to create the seachform.php file and add this code:</p>
<p>&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;&#034; /&gt;</p>
<p>and it works fine <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Suzanne</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goedkope</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-634099</link>
		<dc:creator>Goedkope</dc:creator>
		<pubDate>Wed, 17 Jun 2009 23:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-634099</guid>
		<description>I have manually moved my search widget into the  my header. It works great in Firefox 3, Opera, Chrome. But in IE6 the search form is not functioning. 

I have no ideas. Help will be appreciated.

Goedkope</description>
		<content:encoded><![CDATA[<p>I have manually moved my search widget into the  my header. It works great in Firefox 3, Opera, Chrome. But in IE6 the search form is not functioning. </p>
<p>I have no ideas. Help will be appreciated.</p>
<p>Goedkope</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennifer</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-625675</link>
		<dc:creator>Jennifer</dc:creator>
		<pubDate>Wed, 18 Mar 2009 18:57:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-625675</guid>
		<description>So if you&#039;re going to use searchform.php - just create a file, name it &quot;searchform.php&quot; - put it in the same folder as the rest of your theme files. Add something like the following:

&lt;code&gt;&lt;form method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;&lt;?php echo get_option(&#039;home&#039;); ?&gt;/&quot; &gt;
&lt;label for=&quot;s&quot;&gt;Search:&lt;/label&gt;
&lt;input type=&quot;text&quot; value=&quot;&lt;?php echo attribute_escape(apply_filters(&#039;the_search_query&#039;, get_search_query())) ?&gt;&quot; name=&quot;s&quot; id=&quot;s&quot; /&gt;
&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;Search&quot; /&gt;
&lt;/form&gt;&lt;/code&gt;

Then call it from any of your template files using this: &lt;?php get_search_form(); ?&gt; - and it will pull in the contents of your searchform.php file (just like get_header() pulls in the contents of header.php... etc)</description>
		<content:encoded><![CDATA[<p>So if you&#039;re going to use searchform.php &#8211; just create a file, name it &#034;searchform.php&#034; &#8211; put it in the same folder as the rest of your theme files. Add something like the following:</p>
<p><code>&lt;form method="get" id="searchform" action="&lt;?php echo get_option('home'); ?&gt;/" &gt;<br />
&lt;label for="s"&gt;Search:&lt;/label&gt;<br />
&lt;input type="text" value="&lt;?php echo attribute_escape(apply_filters('the_search_query', get_search_query())) ?&gt;" name="s" id="s" /&gt;<br />
&lt;input type="submit" id="searchsubmit" value="Search" /&gt;<br />
&lt;/form&gt;</code></p>
<p>Then call it from any of your template files using this: &lt;?php get_search_form(); ?&gt; &#8211; and it will pull in the contents of your searchform.php file (just like get_header() pulls in the contents of header.php&#8230; etc)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rawr</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-625639</link>
		<dc:creator>Rawr</dc:creator>
		<pubDate>Wed, 18 Mar 2009 14:18:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-625639</guid>
		<description>Having a hard time with this.  I&#039;ve started out with 2.7 so I don&#039;t know what the searchform.php is supposed to look like.  I found a code on Google Code but that keeps giving me some sort of error.  Will try again.  If anyone know a link that has full instructions, please share, thanks.</description>
		<content:encoded><![CDATA[<p>Having a hard time with this.  I&#039;ve started out with 2.7 so I don&#039;t know what the searchform.php is supposed to look like.  I found a code on Google Code but that keeps giving me some sort of error.  Will try again.  If anyone know a link that has full instructions, please share, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Buzzlair Voufincci</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-623222</link>
		<dc:creator>Buzzlair Voufincci</dc:creator>
		<pubDate>Fri, 27 Feb 2009 18:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-623222</guid>
		<description>Okay, the problem with the provided searchform is that

the label tag is annoying and i cant a way to modify it without going to the core engine /include.

but when u applied kubrick default theme. it removes label tag. the question is how do they remove it. i checked its css file but cant find anywhere that could perform such action.

so, i created searchform.php using exactly the same structure of the provided search form but in xhtml format and without the annoying label tag :D

at least, thats the solution :D</description>
		<content:encoded><![CDATA[<p>Okay, the problem with the provided searchform is that</p>
<p>the label tag is annoying and i cant a way to modify it without going to the core engine /include.</p>
<p>but when u applied kubrick default theme. it removes label tag. the question is how do they remove it. i checked its css file but cant find anywhere that could perform such action.</p>
<p>so, i created searchform.php using exactly the same structure of the provided search form but in xhtml format and without the annoying label tag <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>at least, thats the solution <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennifer</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-620820</link>
		<dc:creator>Jennifer</dc:creator>
		<pubDate>Sat, 07 Feb 2009 21:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-620820</guid>
		<description>Yeah, I&#039;m inclined to believe that too. Since the first thing the function does it look for the file - once found - that would be the end of any processing. :) Well if nothing else, it was an interesting experiment. LOL</description>
		<content:encoded><![CDATA[<p>Yeah, I&#039;m inclined to believe that too. Since the first thing the function does it look for the file &#8211; once found &#8211; that would be the end of any processing. <img src='http://www.scriptygoddess.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Well if nothing else, it was an interesting experiment. LOL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajbir D</title>
		<link>http://www.scriptygoddess.com/archives/2009/02/06/get_search_form-in-wordpress/comment-page-1/#comment-620807</link>
		<dc:creator>Rajbir D</dc:creator>
		<pubDate>Sat, 07 Feb 2009 19:42:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/?p=1580#comment-620807</guid>
		<description>was looking for something like this, but i think it&#039;s better to use searchform.php</description>
		<content:encoded><![CDATA[<p>was looking for something like this, but i think it&#039;s better to use searchform.php</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.489 seconds -->
