<?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>Adult Blog Trade &#187; Bloging Tips</title>
	<atom:link href="http://adult.adultblogtrade.com/category/bloging-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://adult.adultblogtrade.com</link>
	<description>Add Links to your Adult Blogs and Increase Your Traffic!</description>
	<lastBuildDate>Sat, 06 Nov 2010 01:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Adding Banners after posts in WP</title>
		<link>http://adult.adultblogtrade.com/adding-banners-after-posts-in-wp/</link>
		<comments>http://adult.adultblogtrade.com/adding-banners-after-posts-in-wp/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 06:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bloging Tips]]></category>

		<guid isPermaLink="false">http://adult.adultblogtrade.com/?p=785</guid>
		<description><![CDATA[From Shem&#8217;s Business forum at Medium Pimpin NY Jester had asked about my blog Bountiful Babes and how I got banners to show up in the posts so I thought i&#8217;d create a new post so everyone can find out if they&#8217;re interested. The way I have those banners show up is that they&#8217;re &#8220;hard [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bbs.mediumpimpin.com/forumdisplay.php?f=19" target="_blank">From Shem&rsquo;s Business forum at Medium Pimpin</a></p>
<p>NY Jester had asked about my blog <a href="http://www.bountifulbabes.com/" target="_blank">Bountiful Babes</a> and how I got banners to show up in the posts so I thought i&#8217;d create a new post so everyone can find out if they&#8217;re interested.<span id="more-785"></span></p>
<p>The way I have those banners show up is that they&#8217;re &#8220;hard coded&#8221; if you will, on to my wordpress templates so the same banners will show up on every page, because of this I pick my 7 favorite sponsors (since I have 7 posts showing on each page) and save a banner for each one that I feel my surfers would be attracted to. Now my banners don&#8217;t get as much traffic as my blog posts/pictures but they still get me traffic so I make use of the space. Now I have the banners I want to use after the posts I go in to my wordpress templates.</p>
<p>This &#8220;coding&#8221; will work for any wordpress template and is also useful in mainstream blogs as well (I&#8217;ll give an example later if you&#8217;re interested). Now for the code, you want to open your index.php template page from your wordpress backend.</p>
<p>Find where it says <br /><font color="red">&lt;?php while (have_posts()) : the_post(); ?&gt;</font></p>
<p>replace that line with<br /><font color="red">&lt;?php while (have_posts()) : the_post(); $loopcounter++; ?&gt;</font></p>
<p>This enables a &#8220;counter&#8221; so you can &#8220;count&#8221; posts on the page, ie: post 1,2,3,4,5,6,7 (since I have 7 posts per page)</p>
<p>Now that you&#8217;ve numbered the posts you want to tell your blog what to post after each post and where. </p>
<p>Find the section of your index.php where you want the banner to show, in the example of Bountiful babes I went to the end of the post code:</p>
<p><font color="red">&lt;div class=&#8221;storycontent&#8221;&gt;<br />&lt;?php the_content(__(&#8216;(more&#8230;)&#8217;)); ?&gt;<br />&lt;/div&gt;<br />&lt;?php <br />else:<br />echo &#8220;&#8221;;<br />endif; ?&gt;</font></p>
<p>(This code is going to be different for each template, this is simply how it&#8217;s laid out on my template) and then right after that section of code I place this code:</p>
<p><font color="red">&lt;?php if ($loopcounter == 1) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK1&#8243;&gt;&lt;img src=&#8221;BANNER1&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; </p>
<p>&lt;?php if ($loopcounter == 2) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK2&#8243;&gt;&lt;img src=&#8221;BANNER2&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; </p>
<p>&lt;?php if ($loopcounter == 3) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK3&#8243;&gt;&lt;img src=&#8221;BANNER3&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;br&gt;&lt;/b&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; </p>
<p>&lt;?php if ($loopcounter == 4) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK4&#8243;&gt;&lt;img src=&#8221;BANNER4&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; </p>
<p>&lt;?php if ($loopcounter == 5) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK5&#8243;&gt;&lt;img src=&#8221;BANNER5&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; </p>
<p>&lt;?php if ($loopcounter == 6) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK6&#8243;&gt;&lt;img src=&#8221;BANNER6&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br&gt;&lt;/div&gt;<br />&lt;?php } ?&gt;</p>
<p>&lt;?php if ($loopcounter == 7) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK7&#8243;&gt;&lt;img src=&#8221;BANNER7&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; </font></p>
<p>This code tells your blog what image to pull from where and what to link it to (just make sure you replace the LINK and BANNER sections of code above with the right links!). For those concerned about not having an &#8220;adsense&#8221; category not coded in to your css sheet it should pull up just fine anyway but if you&#8217;d prefer you can add one yourself.</p>
<p>Now you should be getting banners pulling up after each of your posts, just change the &lt;center&gt; alignment to left/right if you&#8217;d prefer different alignment of your banners.</p>
<p>I mentioned mainstream blogs above as well which brings to mind one of my mainstream blogs that I wanted to display google adsense after every other post instead of every post. You can do this with the same process above but instead of the second section reading as so:</p>
<p><font color="red">&lt;?php if ($loopcounter == 1) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;&lt;b&gt;&lt;center&gt;&lt;a href=&#8221;LINK1&#8243;&gt;&lt;img src=&#8221;BANNER1&#8243;&gt;&lt;/a&gt;&lt;/center&gt;&lt;/b&gt;&lt;br&gt;&lt;/div&gt;<br />&lt;?php } ?&gt; <br />&#8230;</font></p>
<p>You want to place this code instead:</p>
<p><font color="red">&lt;?php if ($loopcounter % 2 == 0) { ?&gt;</p>
<p>&lt;div class=&ldquo;adsense&rdquo;&gt;ADSENSE SCRIPT GOES HERE&lt;/div&gt;</p>
<p>&lt;?php } ?&gt;</font></p>
<p>This tells the counter to only place google ads after every second post, this is especially helpful when you have more than three posts per page since Adsense has restrictions on how many ads you can show per page and it gives a more uniform look to your ad spots on your blog. If you want every 3 posts change the 2 above to a 3 and so on.</p>
<p>Hope that helps some of you placing ads on your blogs <img class="inlineimg" title="Smilie" alt="" src="http://bbs.mediumpimpin.com/images/smilies/smile.gif" border="0" /></p>
<p><a href="http://bbs.mediumpimpin.com/showthread.php?t=68849" target="_blank">Got question about this tip?</a></p>
<div class="bjtags">Tags:  <a rel="tag" href="http://technorati.com/tag/Bloggin+Tip">Bloggin+Tip</a></div>
]]></content:encoded>
			<wfw:commentRss>http://adult.adultblogtrade.com/adding-banners-after-posts-in-wp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color combination for you blog</title>
		<link>http://adult.adultblogtrade.com/color-combination-for-you-blog/</link>
		<comments>http://adult.adultblogtrade.com/color-combination-for-you-blog/#comments</comments>
		<pubDate>Mon, 09 Jun 2008 06:37:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bloging Tips]]></category>

		<guid isPermaLink="false">http://adult.adultblogtrade.com/?p=784</guid>
		<description><![CDATA[Building a blog network and can’t decided what colors to use for you blog?  Check out these sites that will help you pick the perfect color combination!Color Combination  :: Color Wheel]]></description>
			<content:encoded><![CDATA[<p>Building a blog network and can’t decided what colors to use for you blog? <span id="more-784"></span> Check out these sites that will help you pick the perfect color combination!<br /><a href="http://www.colorcombos.com/" target="_blank">Color Combination</a>  :: <a href="http://design.geckotribe.com/colorwheel/" target="_blank">Color Wheel</a></p>
]]></content:encoded>
			<wfw:commentRss>http://adult.adultblogtrade.com/color-combination-for-you-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a noticable text link to your blog</title>
		<link>http://adult.adultblogtrade.com/add-a-noticable-text-link-to-your-blog/</link>
		<comments>http://adult.adultblogtrade.com/add-a-noticable-text-link-to-your-blog/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 00:09:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bloging Tips]]></category>

		<guid isPermaLink="false">http://adult.adultblogtrade.com/?p=158</guid>
		<description><![CDATA[Want to maximize your advertisement with a non intrusive text link?  MaxBlogPress Stripe Ad is a wordpress plugin that you can use to add a small strip of text links that you have control over.  Rotate different text links, edit the weight of display, it’s a pretty easy plug-in that you can use to rotate links [...]]]></description>
			<content:encoded><![CDATA[<p>Want to maximize your advertisement with a non intrusive text link?<span id="more-158"></span>  <a title="Visit plugin homepage" href="http://www.maxblogpress.com/plugins/msa/"><strong>MaxBlogPress Stripe Ad</strong></a> is a wordpress plugin that you can use to add a small strip of text links that you have control over.  Rotate different text links, edit the weight of display, it’s a pretty easy plug-in that you can use to rotate links to your other blogs or affiliate programs you’re promoting.</p>
]]></content:encoded>
			<wfw:commentRss>http://adult.adultblogtrade.com/add-a-noticable-text-link-to-your-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging Help and Tip  Post #3</title>
		<link>http://adult.adultblogtrade.com/blogging-help-and-tip-post-3/</link>
		<comments>http://adult.adultblogtrade.com/blogging-help-and-tip-post-3/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 06:07:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bloging Tips]]></category>

		<guid isPermaLink="false">http://adult.adultblogtrade.com/?p=26</guid>
		<description><![CDATA[Just another Bloggin Tip! Or maybe a plug in??]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.revolutiontheme.com/images/demo/maroon.jpg" height="200" width="290" /></p>
<p>Just another Bloggin Tip!  Or maybe a plug in??</p>
]]></content:encoded>
			<wfw:commentRss>http://adult.adultblogtrade.com/blogging-help-and-tip-post-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging Help and Tip  Post #2</title>
		<link>http://adult.adultblogtrade.com/blogging-help-and-tip-post-2/</link>
		<comments>http://adult.adultblogtrade.com/blogging-help-and-tip-post-2/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 06:06:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bloging Tips]]></category>

		<guid isPermaLink="false">http://adult.adultblogtrade.com/?p=25</guid>
		<description><![CDATA[This section will always roate the top 3 tips]]></description>
			<content:encoded><![CDATA[<p>This section will always roate the top 3 tips</p>
]]></content:encoded>
			<wfw:commentRss>http://adult.adultblogtrade.com/blogging-help-and-tip-post-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blogging Help and Tips</title>
		<link>http://adult.adultblogtrade.com/blogging-help-and-tips/</link>
		<comments>http://adult.adultblogtrade.com/blogging-help-and-tips/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 06:01:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bloging Tips]]></category>

		<guid isPermaLink="false">http://adult.adultblogtrade.com/?p=24</guid>
		<description><![CDATA[This section will feature some good tips, plug-ins and maybe something we did to help with another blogger that others might find useful]]></description>
			<content:encoded><![CDATA[<p>This section will feature some good tips, plug-ins and maybe something we did to help with another blogger that others might find useful</p>
]]></content:encoded>
			<wfw:commentRss>http://adult.adultblogtrade.com/blogging-help-and-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

