<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WpFunc &#187; jquery</title>
	<atom:link href="http://wpfunc.com/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Thu, 01 Dec 2011 01:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Include jQuery to your theme</title>
		<link>http://wpfunc.com/wordpress/include-jquery-to-your-theme.html</link>
		<comments>http://wpfunc.com/wordpress/include-jquery-to-your-theme.html#comments</comments>
		<pubDate>Thu, 08 Oct 2009 17:34:14 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[integrate java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=244</guid>
		<description><![CDATA[Hi again. The jQuery is the most easy javascript framework. You can integrate most of useful javascript commands and code to your site with this framework. Also you can addjQuery to your WordPress theme easily&#8230;
Here is the code;
Add this code to your header.php. Paste this code between &#60;head&#62; and &#60;/head&#62; tags.
That&#8217;s All! Have a nice [...]]]></description>
			<content:encoded><![CDATA[<p>Hi again. The jQuery is the most easy javascript framework. You can integrate most of useful javascript commands and code to your site with this framework. Also you can addjQuery to your WordPress theme easily&#8230;<span id="more-244"></span></p>
<h3 style="text-align: justify;">Here is the code;</h3>
<pre class="brush: plain; title: ; notranslate">&lt;?php wp_enqueue_script(&quot;jquery&quot;); ?&gt;</pre>
<p>Add this code to your header.php. Paste this code between <strong><em>&lt;head&gt;</em></strong> and <strong><em>&lt;/head&gt;</em></strong> tags.</p>
<p>That&#8217;s All! Have a nice day.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/include-jquery-to-your-theme.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Use Tabs in Your Blog!</title>
		<link>http://wpfunc.com/wordpress/use-tabs-in-your-blog.html</link>
		<comments>http://wpfunc.com/wordpress/use-tabs-in-your-blog.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 18:34:09 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[non-premium themes]]></category>
		<category><![CDATA[Premium themes]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/wordpress/use-tabs-in-your-blog.html</guid>
		<description><![CDATA[Some Premium WordPress themes have jQuery tabs in the original. But if you have a non-premium theme you can easily apply this tabs in your theme. You integrate 1 js file and 1 css file in your theme and some code :) Let&#8217;s Begin&#8230;
Here is the code and files;
Firstly Download this file for the begining. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Some Premium WordPress themes have jQuery tabs in the original. But if you have a non-premium theme you can easily apply this tabs in your theme. You integrate 1 js file and 1 css file in your theme and some code :) Let&#8217;s Begin&#8230;<span id="more-233"></span></p>
<h3>Here is the code and files;</h3>
<p style="text-align: justify;">Firstly <a href="http://www.wpfunc.com/wp-content/uploads/2009/09/domtabs.zip">Download this file</a> for the begining. There are 2 css files in this zip archive. Upload these files in yout theme directory and just add these code in your themes <span style="color: #ff0000;"><strong>header.php</strong></span> above the <em><strong><span style="color: #ff0000;">&lt;/head&gt;</span></strong></em> tag;</p>
<pre class="brush: plain; title: ; notranslate">&lt;script type=&quot;text/javascript&quot; src=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/domtab.js&quot;&gt;&lt;/script&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;&lt;?php bloginfo('template_directory'); ?&gt;/domtab.css&quot; media=&quot;screen&quot; /&gt;</pre>
<p style="text-align: justify;">After that we will make our tabs. Just copey this code and paste it into your sidebar;</p>
<pre class="brush: plain; title: ; notranslate">&lt;div class=&quot;domtab&quot;&gt;
&lt;ul class=&quot;domtabs&quot;&gt;
&lt;li&gt;&lt;a href=&quot;#t1&quot;&gt;Tab 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#t2&quot;&gt;Tab 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;#t3&quot;&gt;Tab 3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;a name=&quot;t1&quot; id=&quot;t1&quot;&gt;&lt;/a&gt;
&lt;p&gt;Insert contents of the first tab here,
e.g. The code for a plugin.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;a name=&quot;t2&quot; id=&quot;t2&quot;&gt;&lt;/a&gt;
&lt;p&gt;Insert contents of the second tab here.&lt;/p&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;a name=&quot;t3&quot; id=&quot;t3&quot;&gt;&lt;/a&gt;
&lt;p&gt;Insert contents of the third tab here.&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;</pre>
<p style="text-align: justify;">You can make changes for your interests. That&#8217;s All. Thanks to <a href="http://www.blogohblog.com/10-wordpress-hacks-to-make-your-life-even-easier/" target="_blank">Blog-oh-Blog</a> for this code.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/use-tabs-in-your-blog.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

