<?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>www.wpfood.com &#187; The stars</title>
	<atom:link href="http://www.wpfood.com/tag/the-stars/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.wpfood.com</link>
	<description>WordPress for Beginners</description>
	<lastBuildDate>Fri, 05 Mar 2010 15:32:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP125 Ad Management Plugin</title>
		<link>http://www.wpfood.com/2009/02/27/wp125-ad-management-plugin/</link>
		<comments>http://www.wpfood.com/2009/02/27/wp125-ad-management-plugin/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 18:19:47 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[125]]></category>
		<category><![CDATA[Ad Management]]></category>
		<category><![CDATA[advertisments]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[The stars]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WP125]]></category>

		<guid isPermaLink="false">http://www.wpfood.com/?p=202</guid>
		<description><![CDATA[With over 13,000 thousand downloads this plugin is hardly a ...]]></description>
			<content:encoded><![CDATA[<p>With over 13,000 thousand downloads this plugin is hardly a secret but better than a secret is the fact that it works right out of the box. Its great for basic ad management for those ubiquitous 125/125 boxes.</p>
<p>If your using the stars theme and don&#8217;t like updating those extra files on your server and want to do everything from your WordPress dashboard then this is the plugin for you.</p>
<p>Download it <a href="http://wordpress.org/extend/plugins/wp125/" target="_blank">here</a></p>
<p>http://wordpress.org/extend/plugins/wp125/</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpfood.com/2009/02/27/wp125-ad-management-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Ad 125/125 Advertising Blocks</title>
		<link>http://www.wpfood.com/2009/02/15/how-to-ad-125125-advertising-blocks/</link>
		<comments>http://www.wpfood.com/2009/02/15/how-to-ad-125125-advertising-blocks/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 19:34:05 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[The stars]]></category>
		<category><![CDATA[125]]></category>
		<category><![CDATA[125x125]]></category>
		<category><![CDATA[ad blocks]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[Advertising Blocks]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[How to Ad]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[stars]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[thestars]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wpfood.com/?p=42</guid>
		<description><![CDATA[Some people requested that they want the ability to add ...]]></description>
			<content:encoded><![CDATA[<p>Some people requested that they want the ability to add 125&#215;125 ads to their sidebar like the ones that I have so here it is.</p>
<p><strong>STEP ONE</strong></p>
<p>Add the below CSS to the bottom of your screen.css</p>
<pre class="brush: css;">/* Ad Blocks

---------------------------------------------------------------- */

.block

{

margin: 0px 0 0;

padding: 0 0 0px;

color: #aaa;

text-align: center;

text-transform: lowercase;

font-family: monospace;

line-height: .8em;

}

.halfblock

{

width:50%;

float:left;

padding:0;

margin:0;

}</pre>
<p><strong>STEP TWO</strong></p>
<p>Download and extract, then add these two files to your ads folder (example: themes/thsestars/ads/)</p>
<p>Download <a href="http://www.wpfood.com/download/125x125ads.zip">here</a></p>
<p>Alternatively you can just copy the files you have in your stars theme and then rename them ads-125&#215;125right.php and ads-125&#215;125right.php</p>
<p><strong>STEP THREE</strong></p>
<p>Add this code in your sidebar.php where you want the two 125&#215;125 ads to appear.</p>
<pre class="brush: php;">&lt;!-- 125/125 Ad blocks section --&gt;

&lt;li id=&quot;asides&quot;&gt;

&lt;div class=&quot;block&quot;&gt;

&lt;div class=&quot;halfblock&quot;&gt;

&lt;?php include (TEMPLATEPATH . '/ads/ads-125x125left.php'); ?&gt;&lt;/div&gt;&lt;div class=&quot;halfblock&quot;&gt;&lt;?php include (TEMPLATEPATH . '/ads/ads-125x125right.php'); ?&gt;

&lt;/div&gt;

&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;

&lt;/li&gt;

&lt;!-- End 125/125 Ad blocks section --&gt;</pre>
<p>When adding all of the above you must remember to add your ad spots using the left/right.php files or else nothing else will show up.</p>
<p><strong>Example:</strong></p>
<pre class="brush: xml;">&lt;a href=&quot;thelinktoyourad&quot; target=&quot;blank&quot;&gt;&lt;img src=&quot;thelinkwheretheimageisstored&quot; alt=&quot;nameofad&quot; /&gt;&lt;/a&gt;</pre>
<p>See the ads in action in my sidebar &#8212;&#8212;&#8212;&#8212;&gt;&gt;&gt;&gt;</p>
<p>Any trouble post below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpfood.com/2009/02/15/how-to-ad-125125-advertising-blocks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adding a Page to the Main Menu</title>
		<link>http://www.wpfood.com/2009/02/13/adding-a-page-to-the-main-menu/</link>
		<comments>http://www.wpfood.com/2009/02/13/adding-a-page-to-the-main-menu/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 20:40:38 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
				<category><![CDATA[The stars]]></category>
		<category><![CDATA[Adding Page]]></category>
		<category><![CDATA[Main Menu]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wpfood.com/?p=118</guid>
		<description><![CDATA[This is courtesy of mscott
How to Add pages to your ...]]></description>
			<content:encoded><![CDATA[<p>This is courtesy of <a href="http://mattscott.com" target="_blank">mscott</a></p>
<p>How to Add pages to your main (Black) menu.</p>
<p><strong>In the header.php add:</strong></p>
<blockquote><p>&lt;?php wp_list_pages(&#8216;title_li=&#8217;); ?&gt;</p></blockquote>
<p><strong>So you change this:</strong></p>
<pre class="brush: php;">&lt;ul id=&quot;nav&quot; class=&quot;clearfix&quot;&gt;
&lt;li class=&quot;&lt;?php if (((is_home()) &amp;amp;&amp;amp; !(is_paged())) or (is_archive() &amp;amp;&amp;amp; !(is_category())) or (is_single()) or (is_paged()) or (is_search())) { ?&gt;current-cat&lt;?php } else { ?&gt;cat-item&lt;?php } ?&gt;&quot;&gt;&lt;a href=&quot;&lt;?php echo get_settings('home'); ?&gt;&quot;&gt;&lt;?php _e( 'Home', 'wpbx' ) ?&gt;&lt;/a&gt;&lt;/li&gt;

&lt;!– change &quot;depth=3&quot; to suit your menu depth level, and change &quot;exclude=x&quot; with the category ID that you want exclude from the menu (multiple categories separated by , (comma) –&gt;
&lt;?php wp_list_categories('orderby=ID&amp;amp;order=ASC&amp;amp;depth=3&amp;amp;title_li=&amp;amp;exclude='); ?&gt;

&lt;li id=&quot;m-subscribe&quot;&gt;&lt;a href=&quot;http://feeds.feedburner.com/YOURFEEDBURNERUSERNAME&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~fc/YOURFEEDBURNERUSERNAME?bg=e33258&amp;amp;amp;fg=ffffff&amp;amp;amp;anim=0&quot; height=&quot;26&quot; width=&quot;88&quot; style=&quot;border:0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p><strong>To this:</strong></p>
<pre class="brush: php;">&lt;ul id=&quot;nav&quot; class=&quot;clearfix&quot;&gt;
&lt;li class=&quot;&lt;?php if (((is_home()) &amp;amp;&amp;amp; !(is_paged())) or (is_archive() &amp;amp;&amp;amp; !(is_category())) or (is_single()) or (is_paged()) or (is_search())) { ?&gt;current-cat&lt;?php } else { ?&gt;cat-item&lt;?php } ?&gt;&quot;&gt;&lt;a href=&quot;&lt;?php echo get_settings('home'); ?&gt;&quot;&gt;&lt;?php _e( 'Home', 'wpbx' ) ?&gt;&lt;/a&gt;&lt;/li&gt;

&lt;!– change &quot;depth=3&quot; to suit your menu depth level, and change &quot;exclude=x&quot; with the category ID that you want exclude from the menu (multiple categories separated by , (comma) –&gt;
&lt;?php wp_list_categories('orderby=ID&amp;amp;order=ASC&amp;amp;depth=3&amp;amp;title_li=&amp;amp;exclude='); ?&gt;
&lt;strong&gt; &lt;?php wp_list_pages('title_li='); ?&gt;&lt;/strong&gt;

&lt;li id=&quot;m-subscribe&quot;&gt;&lt;a href=&quot;http://feeds.feedburner.com/YOURFEEDBURNERUSERNAME&quot;&gt;&lt;img src=&quot;http://feeds.feedburner.com/~fc/YOURFEEDBURNERUSERNAME?bg=e33258&amp;amp;amp;fg=ffffff&amp;amp;amp;anim=0&quot; height=&quot;26&quot; width=&quot;88&quot; style=&quot;border:0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p><strong>Remember</strong> when you add this code pages <strong><span style="text-decoration: underline;">AND</span></strong> categories will be visible on the menu.</p>
<p>If you only want to show a couple of pages add this string:</p>
<blockquote><p>&lt;?php wp_list_pages(&#8216;title_li=&amp;exclude=1,2,3&#8242;); ?&gt;</p></blockquote>
<p>Where <strong>1,2,3</strong> are the page numbers you want to exclude.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpfood.com/2009/02/13/adding-a-page-to-the-main-menu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How To Add Pages</title>
		<link>http://www.wpfood.com/2009/02/03/the-stars-theme-adding-pages-to-the-menu/</link>
		<comments>http://www.wpfood.com/2009/02/03/the-stars-theme-adding-pages-to-the-menu/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 15:25:45 +0000</pubDate>
		<dc:creator>Marco</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[The stars]]></category>
		<category><![CDATA[Theme Support]]></category>
		<category><![CDATA[adding]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.wpfood.com/?p=21</guid>
		<description><![CDATA[Premium Wordpress themes are like TheStars give developers and WordPress ...]]></description>
			<content:encoded><![CDATA[<p>Premium Wordpress themes are like TheStars give developers and WordPress users a great option for a good looking site.</p>
<p><strong>Adding Pages to the top of the Menu:</strong></p>
<p><strong>First:</strong> open up the header.php from your theme editor.</p>
<p><strong>Second:</strong> Look for this line of code:</p>
<pre class="brush: php;">&lt;div id=&quot;top&quot;&gt;
&lt;div class=&quot;pads clearfix&quot;&gt;
&lt;ul&gt;</pre>
<p><strong>Third:</strong> Then Add this line of code:</p>
<pre class="brush: php;">&lt;?php wp_list_pages('title_li='); ?&gt;</pre>
<p>So the complete code should look like this:</p>
<pre class="brush: php;">&lt;div id=&quot;top&quot;&gt;
&lt;div class=&quot;pads clearfix&quot;&gt;
&lt;ul&gt;
&lt;?php wp_list_pages('title_li='); ?&gt;
&amp;lt;li id=&quot;t-search&quot;&amp;gt;&amp;lt;div class=&quot;hide&quot;&amp;gt;&amp;lt;?php include (TEMPLATEPATH . '/searchform.php'); ?&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/li&amp;gt;</pre>
<p>To see more information on using pages visit the WorPress Codex <a href="http://codex.wordpress.org/Template_Tags/wp_list_pages" target="_blank">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.wpfood.com/2009/02/03/the-stars-theme-adding-pages-to-the-menu/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
	</channel>
</rss>
