<?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>FortnersFavorites.com &#187; hacks</title>
	<atom:link href="http://fortnersfavorites.com/tag/hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://fortnersfavorites.com</link>
	<description>Cool sites, links, and information!</description>
	<lastBuildDate>Thu, 17 Nov 2011 22:08:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WordPress Theme Hacks</title>
		<link>http://fortnersfavorites.com/wordpress-theme-hacks/</link>
		<comments>http://fortnersfavorites.com/wordpress-theme-hacks/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:34:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[loopcounter]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://fortnersfavorites.com/?p=528</guid>
		<description><![CDATA[Display Google Ad after the first post A lot of people have asked me for this. How to display a Google ad after the first post? It is very simple. [...]]]></description>
			<content:encoded><![CDATA[<p>Display Google Ad after the first post</p>
<p>A lot of people have asked me for this. How to display a Google ad after the first post? It is very simple. You just need to add a variable ($loopcounter) in The Loop. If the $loopcounter is less than or equal to 1, then include google-ad.php code.</p>
<p>via <a href="http://www.webdesignerwall.com/tutorials/wordpress-theme-hacks/">WordPress Theme Hacks</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortnersfavorites.com/wordpress-theme-hacks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Killer Hacks for WordPress that Are Extremely Useful</title>
		<link>http://fortnersfavorites.com/15-killer-hacks-for-wordpress-that-are-extremely-useful/</link>
		<comments>http://fortnersfavorites.com/15-killer-hacks-for-wordpress-that-are-extremely-useful/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 01:27:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[current loop]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[Useful]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://fortnersfavorites.com/?p=523</guid>
		<description><![CDATA[15. Display Ads after the First Post Adding an ad after the post can get you really good money because advertisers really like that spot. It is one of the [...]]]></description>
			<content:encoded><![CDATA[<p>15. Display Ads after the First Post</p>
<p>Adding an ad after the post can get you really good money because advertisers really like that spot. It is one of the hot advertising spots. You can even place adsense there. But if you place as a normal code, an ad will be shown after each post which gets annoying for your users. Therefore using this hack, you can display ads after the first post.</p>
<p>Replace your current loop with this hacked version of the loop in your index.php</p>
<p><code><br />
<?php if (have_posts()) : ?><br />
<?php $count = 0; ?><br />
<?php while (have_posts()) : the_post(); ?><br />
<?php $count  ; ?><br />
  <?php if ($count == 2) : ?><br />
          //Paste your ad code here</p>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p>          <?php the_excerpt(); ?><br />
   <?php else : ?></p>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p>          <?php the_excerpt(); ?><br />
  <?php endif; ?><br />
<?php endwhile; ?><br />
<?php endif; ?><br />
</code></p>
<p>Now this code will show the ad after your second post. Make sure you insert your ad codes there.</p>
<p>via <a href='http://www.wpbeginner.com/wp-tutorials/15-killer-hacks-for-wordpress-that-are-extremely-useful/'>15 Killer Hacks for WordPress that Are Extremely Useful</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortnersfavorites.com/15-killer-hacks-for-wordpress-that-are-extremely-useful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ultimate RSS Toolbox – 120+ RSS Resources</title>
		<link>http://fortnersfavorites.com/the-ultimate-rss-toolbox-%e2%80%93-120-rss-resources/</link>
		<comments>http://fortnersfavorites.com/the-ultimate-rss-toolbox-%e2%80%93-120-rss-resources/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 02:29:57 +0000</pubDate>
		<dc:creator>cfortner</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[SEO/SEM]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[mankind]]></category>
		<category><![CDATA[readers tools]]></category>
		<category><![CDATA[Ultimate]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://fortnersfavorites.trefreds.com/?p=68</guid>
		<description><![CDATA[Never again will mankind have to look for RSS info in more than one place…ok, we’re kidding, but we’ve aimed to create a near comprehensive list of all the RSS [...]]]></description>
			<content:encoded><![CDATA[<p>Never again will mankind have to look for RSS info in more than one place…ok, we’re kidding, but we’ve aimed to create a near comprehensive list of all the RSS readers, tools, browser plugins, tips, hacks and directories available on the web.  We hope you find it useful (we built it because we needed it), and feel free to add your own suggestions in the comments.</p>
<p>via <a href="http://mashable.com/2007/06/11/rss-toolbox/">The Ultimate RSS Toolbox – 120+ RSS Resources</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortnersfavorites.com/the-ultimate-rss-toolbox-%e2%80%93-120-rss-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Fields Hacks For WordPress « Smashing Magazine</title>
		<link>http://fortnersfavorites.com/custom-fields-hacks-for-wordpress-%c2%ab-smashing-magazine/</link>
		<comments>http://fortnersfavorites.com/custom-fields-hacks-for-wordpress-%c2%ab-smashing-magazine/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 01:49:26 +0000</pubDate>
		<dc:creator>cfortner</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css styles]]></category>
		<category><![CDATA[custom css]]></category>
		<category><![CDATA[digg]]></category>
		<category><![CDATA[expiration]]></category>
		<category><![CDATA[Fields]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[Magazine]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[search engine indexing]]></category>

		<guid isPermaLink="false">http://fortnersfavorites.trefreds.com/?p=39</guid>
		<description><![CDATA[In this article, we’ve compiled a list of 10 useful things that you can do with custom fields in WordPress. Among them are setting expiration time for posts, defining how [...]]]></description>
			<content:encoded><![CDATA[<p>In this article, we’ve compiled a list of 10 useful things that you can do with custom fields in WordPress. Among them are setting expiration time for posts, defining how blog posts are displayed on the front page, displaying your mood or music, embedding custom CSS styles, disabling search engine indexing for individual posts, inserting a “Digg this” button only when you need it and, of course, displaying thumbnails next to your posts</p>
<p><a href="http://www.smashingmagazine.com/2009/05/13/10-custom-fields-hacks-for-wordpress/">Custom Fields Hacks For WordPress « Smashing Magazine</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://fortnersfavorites.com/custom-fields-hacks-for-wordpress-%c2%ab-smashing-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

