<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Nice2All.com</title>
	
	<link>http://nice2all.com</link>
	<description>Let's talk WordPress</description>
	<lastBuildDate>Fri, 10 Jul 2009 07:27:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1-beta2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/nice2all" type="application/rss+xml" /><feedburner:emailServiceId>nice2all</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>WordPress: Possibilities are endless</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/cLYNU4ftky4/</link>
		<comments>http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 07:27:04 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Markup]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4392</guid>
		<description><![CDATA[One is not restricted to the basic blog look when using WordPress.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">A</span> while ago I was tasked with the job of creating a WordPress site for a photographic community. The owner of this site had very fixed ideas of what he wanted and I knew that I would have to deliver exactly what he required or the owner would simply get someone else to do the job.</p>
<p>This was no ordinary WordPress blog. The specifications demanded something that I have never seen on any other site. Instead of a normal blog main page, a type of landing page was required. This page had to show just thumbnails form the latest articles. The problem was that these thumbnails had to be repeated 5 times as the articles to be shown here come from 5 different categories. In other words, there had to be 5 photo galleries with each thumbnail being a link to the relevant article.</p>
<p>I knew the standard WordPress loop would not do the job. Fortunately WordPress itself is so flexible it allowed me to get the task done even though it meant that I ended up with 53 categories and 58 post tags.<br />
<span id="more-4392"></span><br />
This was not the end of the story. The sidebar had to be dynamic meaning that it changed depending on which page you were on. This sidebar also had to show 7 random thumbnails each from a different category. There were also 21 text links on the sidebar again from 21 different categories.</p>
<p><img style=' float: left; padding: 4px; margin: 0 7px 2px 0;'  alt="" src="http://nice2all.com/wp-content/jadrix1.jpg" class="alignleft" width="300" height="674" />When I started the job I nearly ran away. I really thought the guy was nuts and that he was expecting the impossible. The problem was however not with the owner of the site, it was with me. The problem was that I was stuck in a rut. When I thought of WordPress I thought only along the lines of the default theme. To use the old cliche &#8211; I had to start thinking outside the box.</p>
<p>The code for the file <strong>index.php</strong> on a normal blog reads something like this:</p>
<pre>
&lt;?php get_header(); ?&gt;
	&lt;div id=&quot;content&quot;&gt;
		&lt;?php if (have_posts()) : ?&gt;
			&lt;?php while (have_posts()) : the_post(); ?&gt;
				&lt;!--code to show post if it exists--&gt;
			&lt;?php endwhile; ?&gt;
		&lt;?php else : ?&gt;
			&lt;!--code if no post exists--&gt;
		&lt;?php endif; ?&gt;
		&lt;!-- this is the main loop. It continues running until the number of posts required has been reached --&gt;
	&lt;/div&gt;
&lt;?php get_sidebar(); ?&gt;
&lt;?php get_footer(); ?&gt;
</pre>
<p>This code simply fetches the latest posts in the database and displays them one below the other. What I needed was 5 different loops each showing articles from its own category. The code I eventually used was something like this:</p>
<pre>
&lt;?php get_header(); ?&gt;
		&lt;div id=&quot;content&quot;&gt;
			&lt;div class=&quot;featured&quot;&gt;
				&lt;div class=&quot;main-page&quot;&gt;
					&lt;h3&gt;Photo Posts of the moment&lt;/h3&gt;
					&lt;p&gt;Free for all - click to view, comment, or post your own&lt;/p&gt;
					&lt;?php query_posts('cat=17,19,38&amp;showposts=8'); ?&gt;
					&lt;?php while (have_posts()) : the_post(); ?&gt;
						&lt;?php
						$thumb = get_post_meta($post-&gt;ID, 'Thumbnail', $single = true);
						?&gt;
						&lt;?php
							if($thumb !== '') { ?&gt;
							&lt;div class=&quot;left&quot;&gt;
								&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Click to view &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;img src=&quot;&lt;?php echo $thumb; ?&gt;&quot;
								alt=&quot;&quot; width=&quot;120&quot; height=&quot;120&quot;
								/&gt;&lt;/a&gt;
							&lt;/div&gt;
					      	&lt;?php }
							else { echo ''; } ?&gt;
					&lt;?php endwhile; ?&gt;
				&lt;/div&gt;
				&lt;div class=&quot;main-page&quot;&gt;
					&lt;!-- The same type of loop as used above is now repeated for each of the desired categories--&gt;
				&lt;/div&gt;
			&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;?php get_sidebar(); ?&gt;
&lt;?php get_footer(); ?&gt;
</pre>
<p>This code fetches the latest articles from a specific category and displays the thumbnail attached to each article. This process is repeated 5 times eventually showing the thumbnails from the 5 categories that were required. You will notice that the standard loop is nowhere to be seen on this page anymore.</p>
<p>The sidebar was even more of a headache but that is a tale for another day.</p>
<p>What is the point of this article? When we use WordPress we do not have to follow blindly that which others are doing. In my opinion the only limitation WordPress has is the imagination of the person who puts it all together.</p>
<p>I think the problem these days starts with the designers. These guys come up with some fantastic designs but unfortunately they stay within the boundaries of what they think WordPress can do. The developers then take these designs and make them work. The result is that all possibilities are not explored and we all end up with sites that have a similar look and feel to them.</p>
<p>What about you? Have you used WordPress in any special way? Next time you need to design a new site please let your imagination go, you will be surprised to find out just how far WordPress will allow you to go. I am sure this same thing is true for most of the other blogging platforms as well.</p>
<p>Oopsie, nearly forgot. You would be welcome to visit the <a href="http://jadrix.co.za" title="">site</a> I have been discussing.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/&amp;title=WordPress:+Possibilities+are+endless" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/&amp;t=WordPress:+Possibilities+are+endless" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+WordPress:+Possibilities+are+endless+-+http://tinyurl.com/lo3yam" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=WordPress%3A%20Possibilities%20are%20endless&amp;body=A%20while%20ago%20I%20was%20tasked%20with%20the%20job%20of%20creating%20a%20WordPress%20site%20for%20a%20photographic%20community.%20The%20owner%20of%20this%20site%20had%20very%20fixed%20ideas%20of%20what%20he%20wanted%20and%20I%20knew%20that%20I%20would%20have%20to%20deliver%20exactly%20what%20he%20required%20or%20the%20owner%20would%20simply%20get%20someone%20else%20to%20do%20the%20job.%0D%0A%0D%0AThis%20was%20no%20ord - http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/&amp;title=WordPress:+Possibilities+are+endless" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/&amp;title=WordPress:+Possibilities+are+endless" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=cLYNU4ftky4:R53gAtpBy9w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=cLYNU4ftky4:R53gAtpBy9w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=cLYNU4ftky4:R53gAtpBy9w:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=cLYNU4ftky4:R53gAtpBy9w:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/cLYNU4ftky4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/10/wordpress-possibilities-are-endless/</feedburner:origLink></item>
		<item>
		<title>WordPress: Menu Query</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/OyyzCCjZIBE/</link>
		<comments>http://nice2all.com/2009/07/09/wordpress-menu-query/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 06:02:41 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Intermediate Tutorial]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4382</guid>
		<description><![CDATA[A quick look at adding other links to page menus.]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://nice2all.com/wp-content/wp28-int.jpg" class="alignnone" width="200" height="40" /></p>
<p><em><span class="drop">I</span> want to add a menu listing the pages on my blog but I need to add other links to the beginning and end of the menu. I notice that at Nice2Create you have done something similar in that you have a home menu before the pages and a register link at the end. How should I do this?</em></p>
<p>I cannot tell you how you <strong>should</strong> do this, I can only tell you how I did it. In pre-WordPress 2.7 days we used the WordPress function <strong>wp_list_pages</strong> to show the page menus. WordPress 2.7 brought along with it a new function called <strong>wp_page_menu</strong>. This function is actually just a wrapper for the older function and it provides us with some pretty nifty features. Amongst other things it allow us to show a link to the home page at the start of the menu.<br />
<span id="more-4382"></span><br />
On Nice2Create I did not use the new function as it does not allow one to make changes to the home link nor does it allow one to add something at the end of the menu (or at least, not very easily). I reverted to the older function to be able to do what I wanted to do.</p>
<p>I used the following XHTML to code the menu:</p>
<pre>
&lt;div class=&quot;menu&quot;&gt;
	&lt;ul&gt;
		&lt;?php if(is_home() &amp;&amp; !is_paged()){ ?&gt;
			&lt;li class=&quot;current_page_item&quot;&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/&quot; title=&quot;You are Home&quot; rel=&quot;nofollow&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
		&lt;?php } else { ?&gt;
			&lt;li&gt;&lt;a href=&quot;&lt;?php echo get_option('home'); ?&gt;/&quot; title=&quot;Click for Home&quot; rel=&quot;nofollow&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
		&lt;?php } ?&gt;
		&lt;?php  wp_list_pages('depth=1&amp;title_li'); ?&gt;
		&lt;?php wp_register(); ?&gt;
		&lt;?php wp_meta(); ?&gt;
	&lt;/ul&gt;
&lt;/div&gt;
</pre>
<p>I have a conditional statement on the code to add the home link at the start of the menu. I wanted to highlight the current page on the menu. This loop allows me to know if the current page is the home page or not. What changes did I make to the home link? I changed the title of the link depending on if it is the home page that is open or not. If you are on the home page the tool-tip text will show <em>You are Home</em>, if you are on another page the tool-tip text will display <em>Click for Home</em>. </p>
<p>I then used the wp_list_pages function to add the pages on the site to the menu. The depth setting on this portion is there to ensure that child pages are not shown. Just how to show child pages on a menu is a topic for a different discussion.</p>
<p>After this I simply used the standard code to add a Site Admin link to the end of the menu. This link is only visible to the logged in users. If your settings allows it, this link will become a Register link for non logged in users.</p>
<p>To make this all work I needed the following styling:</p>
<pre>
.menu{width:100%;float:left;overflow:hidden;margin:10px 0;text-align:center}
.menu ul{list-style:none;margin:0;padding:0;list-style-type:none;padding:5px 0;margin:0;}
.menu ul a{height:auto;}
.menu ul li{display:inline;padding-right:10px;margin:0;padding:0 10px}
.menu ul li a:link,.menu ul li a:visited{background:#fff;color:#000;text-decoration:none;}
.menu ul li a:hover,.menu ul li a:focus{background:#fff;color:#bb0000;text-decoration:underline;}
.menu ul li a:active{background:#fff;color:#bb0000;text-decoration:none;}
.menu ul li.current_page_item a, .menu ul li.current_page_item a:hover,.menu ul li.current_page_item a:focus, .menu ul li.current_page_item a:active{background-color:#fff;color:#000;cursor:default;text-align:left;border-top:1px solid #000;border-bottom:1px solid #000;text-decoration:none;}
</pre>
<p>Note I styled the current_page element differently so that it will highlight the current page on the menu. In this same code I also changed the cursor to be shown when mousing over the current page item on the menu.</p>
<p>That was that. I now had a menu showing the pages with a Home link at the beginning and a Site Admin link at the back. I hope this answers your question.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/09/wordpress-menu-query/&amp;title=WordPress:+Menu+Query" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/09/wordpress-menu-query/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/09/wordpress-menu-query/&amp;t=WordPress:+Menu+Query" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+WordPress:+Menu+Query+-+http://tinyurl.com/m5zqec" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=WordPress%3A%20Menu%20Query&amp;body=%0D%0A%0D%0AI%20want%20to%20add%20a%20menu%20listing%20the%20pages%20on%20my%20blog%20but%20I%20need%20to%20add%20other%20links%20to%20the%20beginning%20and%20end%20of%20the%20menu.%20I%20notice%20that%20at%20Nice2Create%20you%20have%20done%20something%20similar%20in%20that%20you%20have%20a%20home%20menu%20before%20the%20pages%20and%20a%20register%20link%20at%20the%20end.%20How%20should%20I%20do%20this%3F%0D%0A%0D%0AI%20cannot%20tell%20 - http://nice2all.com/2009/07/09/wordpress-menu-query/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/09/wordpress-menu-query/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/09/wordpress-menu-query/&amp;title=WordPress:+Menu+Query" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/09/wordpress-menu-query/&amp;title=WordPress:+Menu+Query" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=OyyzCCjZIBE:JZmZhr-Q_LI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=OyyzCCjZIBE:JZmZhr-Q_LI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=OyyzCCjZIBE:JZmZhr-Q_LI:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=OyyzCCjZIBE:JZmZhr-Q_LI:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/OyyzCCjZIBE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/09/wordpress-menu-query/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/09/wordpress-menu-query/</feedburner:origLink></item>
		<item>
		<title>WordPress: Speeding up a new theme</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/C_4D_9YXg1s/</link>
		<comments>http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 07:24:06 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Markup]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4353</guid>
		<description><![CDATA[A look at a small change that could possibly lead to an improvement of download times.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">W</span>hen you activate a new WordPress theme, the theme automatically knows the name of the blog etc. This happens because of the magic of PHP.</p>
<p>Themes are built with a whole lot of PHP snippets in place that gather the required information from the database. If these snippets are left in the theme then it means that this same information will have to be retrieved from the database on every page load. Some will argue that this is unnecessary overhead and the download times can be shortened considerably should these database calls be hard coded with the actual information.</p>
<p>I personally have never seen any hard evidence proving that the saving in database calls that can be achieved in this way, really results in a significant speed difference.<br />
<span id="more-4353"></span><br />
This is a debatable topic but be that as it may, there are some who want to know how they can get rid of these &#8216;unnecessary&#8217; database calls.</p>
<p>Let&#8217;s have a look at our latest theme, the Prism Theme. In the head section of the file <strong>header.php</strong> you will find the following code:</p>
<p>&lt; !DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt; html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221; <span style="color: #ff0000;">&lt; ?php language_attributes(); ?&gt;</span>&gt;<br />
&lt; head profile=&#8221;http://gmpg.org/xfn/11&#8243;&gt;<br />
&lt; meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;html_type&#8217;); ?&gt;</span>; charset=<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;charset&#8217;); ?&gt;</span>&#8221; /&gt;<br />
&lt; title&gt;&lt; ?php bloginfo(&#8217;name&#8217;); ?&gt; &lt; ?php if ( is_single() ) { ?&gt; &amp;raquo; Blog Archive &lt; ?php } ?&gt; &lt; ?php wp_title(); ?&gt;&lt;/title&gt;<br />
&lt; link rel=&#8221;stylesheet&#8221; href=&#8221;&lt; ?php bloginfo(&#8217;stylesheet_url&#8217;); ?&gt;?v=&lt; ?php echo filemtime(TEMPLATEPATH . &#8216;/style.css&#8217;); ?&gt;&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt; ?php<br />
global $options;<br />
foreach ($options as $value) {<br />
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }<br />
}<br />
?&gt;<br />
&lt; ?php if ($prism_color_scheme == &#8220;blue&#8221;) : ?&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/blue.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt; ?php elseif ($prism_color_scheme == &#8220;red&#8221;) : ?&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/red.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt; ?php elseif ($prism_color_scheme == &#8220;gray&#8221;) : ?&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/gray.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt; ?php elseif ($prism_color_scheme == &#8220;green&#8221;) : ?&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/green.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt; ?php elseif ($prism_color_scheme == &#8220;orange&#8221;) : ?&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/orange.css&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; /&gt;<br />
&lt; ?php endif; ?&gt;<br />
&lt; link rel=&#8221;pingback&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;pingback_url&#8217;); ?&gt;</span>&#8221; /&gt;<br />
&lt; meta name=&#8221;description&#8221; content=&#8221;description here&#8221; /&gt;<br />
&lt; meta name=&#8221;keywords&#8221; content=&#8221;comma separated keywords here&#8221; /&gt;<br />
&lt; link rel=&#8221;alternate&#8221; type=&#8221;application/rss+xml&#8221; title=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;name&#8217;); ?&gt;</span> RSS Feed&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;rss2_url&#8217;); ?&gt;</span>&#8221; /&gt;<br />
&lt; link rel=&#8221;shortcut icon&#8221; href=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;url&#8217;); ?&gt;</span>/favicon.ico&#8221; /&gt;<br />
&lt; meta name=&#8221;robots&#8221; content=&#8221;all&#8221; /&gt;<br />
&lt; script src=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/js/menu.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt; script src=&#8221;<span style="color: #ff0000;">&lt; ?php bloginfo(&#8217;template_url&#8217;); ?&gt;</span>/js/tabs.js&#8221; type=&#8221;text/javascript&#8221;&gt;&lt;/script&gt;<br />
&lt; ?php if ( is_singular() ) wp_enqueue_script( &#8216;comment-reply&#8217; ); ?&gt;<br />
&lt; ?php wp_head(); ?&gt;<br />
&lt; /head&gt;</p>
<p>This might appear like rocket science to some but it is actually all very simple. The red bits in this code are all the PHP snippets that I am talking about. All of these are database calls that could be hard-coded. You will notice that I have not marked all the PHP in red. This is because some of the calls should rather not be hard-coded in this theme. The title is set in a very specific way in the theme and the version number is added to the call to retrieve the stylesheet. Hard-coding these pieces could mess things up a bit.</p>
<p>So now we know what the snippets are that we can replace. Now what? You now need to get the actual information and replace the PHP calls with this info. How do you get the actual info? You view the code on your live page, copy the required information and paste it into the theme.</p>
<p>On my site, the PHP bits marked in red here would be replaced with the following:</p>
<table width="100%" border="1">
<tr>
<th scope="col">PHP</th>
<th scope="col">Replacement</th>
</tr>
<tr>
<td>&lt; ?php language_attributes(); ? &gt;</td>
<td>xml:lang=&#8221;en-US&#8221; lang=&#8221;en-US&#8221; dir=&#8221;ltr&#8221;</td>
</tr>
<tr>
<td>&lt; ?php bloginfo(&#8217;html_type&#8217;); ? &gt;</td>
<td>text/html</td>
</tr>
<tr>
<td>&lt; ?php bloginfo(&#8217;charset&#8217;); ? &gt;</td>
<td>utf-8</td>
</tr>
<tr>
<td>&lt; ?php bloginfo(&#8217;template_url&#8217;); ? &gt;</td>
<td>http://nice2all.com/wp-content/themes/prism</td>
</tr>
<tr>
<td>&lt; ?php bloginfo(&#8217;pingback_url&#8217;); ? &gt;</td>
<td>http://nice2all.com/xmlrpc.php</td>
</tr>
<tr>
<td>&lt; ?php bloginfo(’name&#8217;); ? &gt;</td>
<td>Nice2All</td>
</tr>
<tr>
<td>&lt; ?php bloginfo(’url&#8217;); ? &gt;</td>
<td>http://nice2all.com</td>
</tr>
</table>
<p>This is a lot of work and then we are not even sure if it is really going to result in a big improvement in speed. In my opinion it all depends on your PHP skill level. If you are used to using PHP, go for it by all means. If you do not regularly use PHP, maybe not, the chances of something going wrong is far greater than any possible benefit. Should you do something like this please remember to backup your files first.</p>
<p>If you have done something like this on your site, I would love to hear if you experienced any noticeable difference in download times. </p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/&amp;title=WordPress:+Speeding+up+a+new+theme" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/&amp;t=WordPress:+Speeding+up+a+new+theme" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+WordPress:+Speeding+up+a+new+theme+-+http://tinyurl.com/lopu9k" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=WordPress%3A%20Speeding%20up%20a%20new%20theme&amp;body=When%20you%20activate%20a%20new%20WordPress%20theme%2C%20the%20theme%20automatically%20knows%20the%20name%20of%20the%20blog%20etc.%20This%20happens%20because%20of%20the%20magic%20of%20PHP.%0D%0A%0D%0AThemes%20are%20built%20with%20a%20whole%20lot%20of%20PHP%20snippets%20in%20place%20that%20gather%20the%20required%20information%20from%20the%20database.%20If%20these%20snippets%20are%20left%20in%20the%20theme%20the - http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/&amp;title=WordPress:+Speeding+up+a+new+theme" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/&amp;title=WordPress:+Speeding+up+a+new+theme" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=C_4D_9YXg1s:0ieW0Jhkdjs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=C_4D_9YXg1s:0ieW0Jhkdjs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=C_4D_9YXg1s:0ieW0Jhkdjs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=C_4D_9YXg1s:0ieW0Jhkdjs:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/C_4D_9YXg1s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/08/speeding-up-a-new-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>WordPress: Prism Theme Released</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/YJLwT57yltc/</link>
		<comments>http://nice2all.com/2009/07/06/prism-wordpress-theme-released/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 16:46:08 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Free Themes]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4344</guid>
		<description><![CDATA[After a lot of work the Prism Theme is released.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">T</span>he newest free WordPress theme to be released by Nice2Create has taken a while, but it has finally arrived. The theme is called the Prism theme. The reasoning for the choice of name will become clear later in this article.</p>
<p>This is our first free theme that along with many other features, comes with an options page. We have tried to incorporate all the latest trends in this new theme and hopefully quite a few people will find a use for the theme.</p>
<p>The thing that I am the proudest of is the fact that out of the box, this theme meets most of the accessibility standards and contains valid XHTML and CSS. Even if some have no use for the theme itself, it is hoped that the theme will serve as an example of just how a WordPress theme can be built all the while keeping others in mind.<br />
<span id="more-4344"></span><br />
<img alt="" src="http://nice2all.com/wp-content/prism-collage.jpg" class="alignnone" width="600" height="491" /></p>
<p>Okay, so what makes this one different? For us, the biggest change has got to be the options page.</p>
<p><img alt="" src="http://nice2all.com/wp-content/prism-options.jpg" class="alignnone" width="600" height="734" /></p>
<p>The following are the options that automatically update the theme:</p>
<ul>
<li><strong>Color Scheme</strong> &#8211; The theme offers the user a choice of 5 color schemes. You now know where the name comes from. The default is still blue but the user can also select gray, green, orange or red.</li>
<li><strong>Dropdown Menu</strong> &#8211; The theme makes provision for a drop-down menu which allows child pages to be shown in the menu. This menu can be turned off should the user so wish. The reasoning behind this is that some prefer to use child pages as a way of hiding certain pages and therefore do not want them shown in a menu.</li>
<li><strong>Breadcrumb Navigation</strong> &#8211; This navigation can be turned off should the user so wish.</li>
<li><strong>Sidebar Position</strong> &#8211; The user can decide if the sidebar should be on the left or right.</li>
<li><strong>EMail Subscrition</strong> &#8211; A RSS subscription button appears in the sidebar by default. The user can decide if they want to include an email subscription along with this.</li>
<li><strong>Categories/Archives tabs</strong> &#8211; The theme also shows the categories and archives in Javascript tabs on the sidebar. This can be turned off via the options.</li>
<li><strong>Twitter Followers</strong> &#8211; Should the user so choose this widget will appear on the sidebar. The widget shows the number of Twitter followers a user has and invites the readers to join these followers.</li>
<li><strong>Copyright Notice</strong> &#8211; This is not an option in the true sense of the word. A user simply enters the year the blog was started so that the theme can automatically update the copyright notice in the footer every year.</li>
</ul>
<p>The Prism Theme also includes the following features:</p>
<ul>
<li>The WP Generator does not generate the version of WordPress in use. This version is not shown in the code.</li>
<li>Related Posts are built in and work without the need for a widget or plugin. These related posts are based on tags.</li>
<li>Wide images (640px) can be posted. Should images accidentally exceed this width the theme will automatically scale the images.</li>
<li>The sidebar is widgetized so the user can select their own widgets to be shown on the sidebar.</li>
<li>Changing the page order of pages changes the order in which pages appear on the menu.</li>
<li>CSS date graphics for every post on the main page.</li>
<li>Return to top link in the footer.</li>
<li>The theme is WP PageNavi ready. Just download and activate the plugin, the theme will do the rest.</li>
<li>Drop caps can be used in the articles.</li>
<li>Content loads first even if sidebar is placed on the left.</li>
<li>Comments and trackbacks are separated.</li>
<li>Comments are gravatar enabled.</li>
<li>Threaded comments work if selected.</li>
<li>It is possible to create pages that have comments on them.</li>
<li>The search, archives and 404 pages have been customized so that they are useful to the reader.</li>
<li>The &#8216;more&#8217; tags have been customized so that they do not all read exactly the same.</li>
<li>Stylesheets sorted alphabetically to aid with customization.</li>
</ul>
<p>Apart from the options themselves, the options page also contains various customization tips. Amongst others the following are covered:</p>
<ul>
<li>How to change the header and/or footer graphics.</li>
<li>How to use the drop caps that have been included.</li>
<li>How to add ads to the header, the sidebar, after the first article on the main page as well as on the single pages.</li>
<li>How to add a page with comments on it.</li>
</ul>
<p>Just like all our free WordPress themes, this one comes with free support via a <a href="http://nice2create.com/forum/">support forum</a>. </p>
<p>I have included a demo page and download facility at <a href="http://nice2create.com/themes/">Nice2Create</a>.</p>
<p>The theme has been submitted to WordPress for inclusion in the WordPress Theme Directory. The theme is available for download in the meantime but as soon as the theme has been approved the download links etc. will be changed so that they point at the theme directory.</p>
<p>Should you download and spot any errors/omissions I will be grateful for a heads-up on this.</p>
<p>As I always say when we release a new theme &#8211; this theme is yours, take it, tear it apart, make it uniquely yours,  and turn it into something special. Above all have fun with it and enjoy your tweaking.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/06/prism-wordpress-theme-released/&amp;title=WordPress:+Prism+Theme+Released" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/06/prism-wordpress-theme-released/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/06/prism-wordpress-theme-released/&amp;t=WordPress:+Prism+Theme+Released" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+WordPress:+Prism+Theme+Released+-+http://tinyurl.com/loqc65" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=WordPress%3A%20Prism%20Theme%20Released&amp;body=The%20newest%20free%20WordPress%20theme%20to%20be%20released%20by%20Nice2Create%20has%20taken%20a%20while%2C%20but%20it%20has%20finally%20arrived.%20The%20theme%20is%20called%20the%20Prism%20theme.%20The%20reasoning%20for%20the%20choice%20of%20name%20will%20become%20clear%20later%20in%20this%20article.%0D%0A%0D%0AThis%20is%20our%20first%20free%20theme%20that%20along%20with%20many%20other%20features%2C%20comes%20w - http://nice2all.com/2009/07/06/prism-wordpress-theme-released/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/06/prism-wordpress-theme-released/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/06/prism-wordpress-theme-released/&amp;title=WordPress:+Prism+Theme+Released" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/06/prism-wordpress-theme-released/&amp;title=WordPress:+Prism+Theme+Released" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=YJLwT57yltc:UZEFT67Hkt4:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=YJLwT57yltc:UZEFT67Hkt4:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=YJLwT57yltc:UZEFT67Hkt4:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=YJLwT57yltc:UZEFT67Hkt4:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/YJLwT57yltc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/06/prism-wordpress-theme-released/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/06/prism-wordpress-theme-released/</feedburner:origLink></item>
		<item>
		<title>Weekend Round-Up – 4 July 2009</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/AAGsISYqIag/</link>
		<comments>http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 08:14:23 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Weekly Summaries]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4337</guid>
		<description><![CDATA[The weekly round-up along with my complaints related to Twitter.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">H</span>appy 4th of July to all my American friends. I hope you have a wonderful weekend. This past week has seen me putting in a lot of work on the planned new free WordPress theme to be released soon. In an earlier post this week I asked for some input regarding this theme and I received quite a bit of feedback which gave me a lot to think about. </p>
<p>I have decided to stay with blue as the default color of the theme but the users will now have an option of one of 5 basic colors (blue, gray, orange, red or green). Because of all the different colors the theme will be called the Prism theme.</p>
<p>Apart from the color scheme the users will also have options to turn the breadcrumb navigation on or off, to select if the sidebar is on the right or the left, if they want to display an email subscription request on the sidebar, if they want to display a tabbed box (similar to the one on this site) on the sidebar, as well as if they want to display a Twitter widget on the sidebar. All of this stuff can be done from the back-end without any need for plugins and/or widgets. The theme also offers quite a few other goodies, but these I will leave as a surprise.<br />
<span id="more-4337"></span></p>
<h3>This past week in short</h3>
<ul>
<li>I started the week off with a post entitle <a href="http://nice2all.com/2009/06/29/wordpress-free-themes/">Free WordPress Themes</a>. In this post I asked the readers for their ideas on just what should be included in a free theme and what not.</li>
<li>In the next article I took a look at the script for <a href="http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/">breadcrumb navigation</a> I recently updated.</li>
<li><a href="http://nice2all.com/2009/07/01/i-baptize-thee/">I Baptize Thee</a> was the title of the next post. Here I provided a little demo of the planned new theme mentioned above and asked the users for their input.</li>
<li>In the last article for the week I took a look at just what one can do to <a href="http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/">spruce up those search pages </a>a bit. An interesting concept that came out of the comments on this article was the fact that the standard WordPress search function could be replaced by a custom Google search engine. This is a topic that I will definitely be addressing in the near future.</li>
</ul>
<h3>What&#8217;s up in the world of Wordpress?</h3>
<p>The big news this week has to be the whole saga regarding the GPL situation within WordPress. A lot of articles were written, some harsh words were uttered, and opinions were received from experts on the topic. The bottom line is that apart from the CSS and graphics a WordPress theme should be released under the GPL license.</p>
<p>I have always been of the opinion that WordPress themes should not be sold. If you want to charge money for these you should only charge for services that surround the actual theme e.g., support etc.</p>
<p>This debate is far from over and it will be interesting to see just what the &#8216;premium&#8217; theme guys do next.</p>
<h3>Inside Scoop</h3>
<p>This last while I have been receiving a lot of tweets from my Twitter followers with links on them leading to pornographic sites. I have tried to weed out the culprits but the problem continues.</p>
<p>I noticed that most of the people responsible for this are also using the default Twitter avatar. I know I am generalizing but I have been forced to stop following anyone using the default avatar. I will also no longer follow any new follower showing this avatar. The following should clearly demonstrate what I am in the process of doing:</p>
<p><img alt="" src="http://nice2all.com/wp-content/non-follow.jpg" class="alignnone" width="600" height="276" /></p>
<p>This might seem a bit harsh but how difficult is it to show the world just who you are in your avatar. There is absolutely no need to hide behind some horrid default avatar.</p>
<p>That&#8217;s it from me this week. Hope to see you around here again next week.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/&amp;title=Weekend+Round-Up+%26%238211%3B+4+July+2009" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/&amp;t=Weekend+Round-Up+%26%238211%3B+4+July+2009" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+Weekend+Round-Up+%26%238211%3B+4+July+2009+-+http://tinyurl.com/najolw" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Weekend%20Round-Up%20%26%238211%3B%204%20July%202009&amp;body=Happy%204th%20of%20July%20to%20all%20my%20American%20friends.%20I%20hope%20you%20have%20a%20wonderful%20weekend.%20This%20past%20week%20has%20seen%20me%20putting%20in%20a%20lot%20of%20work%20on%20the%20planned%20new%20free%20WordPress%20theme%20to%20be%20released%20soon.%20In%20an%20earlier%20post%20this%20week%20I%20asked%20for%20some%20input%20regarding%20this%20theme%20and%20I%20received%20quite%20a%20bit%20of%20f - http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/&amp;title=Weekend+Round-Up+%26%238211%3B+4+July+2009" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/&amp;title=Weekend+Round-Up+%26%238211%3B+4+July+2009" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=AAGsISYqIag:xSuBLKkCLfY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=AAGsISYqIag:xSuBLKkCLfY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=AAGsISYqIag:xSuBLKkCLfY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=AAGsISYqIag:xSuBLKkCLfY:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/AAGsISYqIag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/04/weekend-round-up-4-july-2009/</feedburner:origLink></item>
		<item>
		<title>WordPress: Sprucing up the search pages</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/kfzsBaHOHW4/</link>
		<comments>http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 17:37:19 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Intermediate Tutorial]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4332</guid>
		<description><![CDATA[The search pages are often not very user friendly and do not offer much.]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://nice2all.com/wp-content/wp28-int.jpg" class="alignnone" width="200" height="40" /></p>
<p><span class="drop">I</span> was doing some work on a new theme and I wanted some way to spruce up the search pages in WordPress. Normally if a user searches for some or other keyword, a rather bland page is returned. This page normally has a heading something like <strong>Search Results</strong>. The excerpts of the relevant articles are then listed below this heading.</p>
<p>I found an article on <a href="http://www.wprecipes.com/how-to-display-the-number-of-results-in-wordpress-search">WP Recipes</a> that provided some code that went a long way towards solving this problem. This code returns the number of items found for the relevant keyword as well as the keyword itself and places these in the heading of the search page. This made a lot of sense to me and I decided to try it out.<br />
<span id="more-4332"></span><br />
The code that I placed in the same place as the original heading in <strong>search.php</strong> was the following:</p>
<pre>
&lt;h2 class=&quot;pagetitle&quot;&gt;Search Results for &lt;?php /* Search Count */ $allsearch = &amp;new WP_Query(&quot;s=$s&amp;showposts=-1&quot;); $key = wp_specialchars($s, 1); $count = $allsearch-&gt;post_count; _e(''); _e('&lt;span class=&quot;search-terms&quot;&gt;'); echo $key; _e('&lt;/span&gt;'); _e(' - '); echo $count . ' '; _e('articles'); wp_reset_query(); ?&gt;&lt;/h2&gt;
</pre>
<p>I added a bit more code on the same page just before the call to get the heading of the articles returned from the search:</p>
<pre>
&lt;?php
$title 	= get_the_title();
$keys= explode(&quot; &quot;,$s);
$title 	= preg_replace('/('.implode('|', $keys) .')/iu',
'&lt;strong class=&quot;search&quot;&gt;\0&lt;/strong&gt;',
$title);
?&gt;
</pre>
<p>This code calls a class called <strong>search</strong>. I added a bit of styling for this class in the stylesheet:</p>
<pre>
strong.search{background:#014c9f;color:#fff}
</pre>
<p>In case this is confusing allow me to show the complete code for the actual working bit in <strong>search.php</strong>:</p>
<pre>
&lt;?php if (have_posts()) : ?&gt;
	&lt;h2 class=&quot;pagetitle&quot;&gt;Search Results for &lt;?php /* Search Count */ $allsearch = &amp;new WP_Query(&quot;s=$s&amp;showposts=-1&quot;); $key = wp_specialchars($s, 1); $count = $allsearch-&gt;post_count; _e(''); _e('&lt;span class=&quot;search-terms&quot;&gt;'); echo $key; _e('&lt;/span&gt;'); _e(' - '); echo $count . ' '; _e('articles'); wp_reset_query(); ?&gt;&lt;/h2&gt;

	&lt;?php while (have_posts()) : the_post(); ?&gt;
		&lt;? if (function_exists('wp_list_comments')) : ?&gt;
			&lt;div post_class() id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;?php else : ?&gt;
			&lt;div class=&quot;post&quot; id=&quot;post-&lt;?php the_ID(); ?&gt;&quot;&gt;
		&lt;?php endif; ?&gt;
		&lt;?php
		$title 	= get_the_title();
		$keys= explode(&quot; &quot;,$s);
		$title 	= preg_replace('/('.implode('|', $keys) .')/iu',
		'&lt;strong class=&quot;search&quot;&gt;\0&lt;/strong&gt;',
		$title);
		?&gt;
		&lt;h3&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&quot;&gt;&lt;?php echo $title; ?&gt;&lt;/a&gt;&lt;/h3&gt;
		&lt;small&gt;Posted &lt;?php the_time('F jS, Y') ?&gt;  by &lt;?php the_author() ?&gt; | &lt;?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?&gt;&lt;?php edit_post_link('Edit', ' | ', ''); ?&gt;&lt;/small&gt;
		&lt;div class=&quot;entry&quot;&gt;
			&lt;?php the_excerpt(&quot;Continue reading &quot; . get_the_title('', '', false)); ?&gt;
		&lt;/div&gt;
	&lt;/div&gt;
	&lt;hr /&gt;
&lt;?php endwhile; ?&gt;
</pre>
<p>I now searched for the keyword <strong>test</strong> on my test site and received the following output:</p>
<p><img alt="" src="http://nice2all.com/wp-content/search-changes.jpg" class="alignnone" width="513" height="376" /></p>
<p>I think the otherwise bland page now looks somewhat better and offers a tad more to the user. One can now see exacly how many results were found and the actual keyword is highlighted there where it appears. I hope you can find a use for this little snippet.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/&amp;title=WordPress:+Sprucing+up+the+search+pages" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/&amp;t=WordPress:+Sprucing+up+the+search+pages" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+WordPress:+Sprucing+up+the+search+pages+-+http://tinyurl.com/lt627w" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=WordPress%3A%20Sprucing%20up%20the%20search%20pages&amp;body=%0D%0A%0D%0AI%20was%20doing%20some%20work%20on%20a%20new%20theme%20and%20I%20wanted%20some%20way%20to%20spruce%20up%20the%20search%20pages%20in%20WordPress.%20Normally%20if%20a%20user%20searches%20for%20some%20or%20other%20keyword%2C%20a%20rather%20bland%20page%20is%20returned.%20This%20page%20normally%20has%20a%20heading%20something%20like%20Search%20Results.%20The%20excerpts%20of%20the%20relevant%20articles%20are - http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/&amp;title=WordPress:+Sprucing+up+the+search+pages" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/&amp;title=WordPress:+Sprucing+up+the+search+pages" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=kfzsBaHOHW4:FJqjos-u-Qs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=kfzsBaHOHW4:FJqjos-u-Qs:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=kfzsBaHOHW4:FJqjos-u-Qs:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=kfzsBaHOHW4:FJqjos-u-Qs:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/kfzsBaHOHW4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/02/sprucing-up-the-search-pages/</feedburner:origLink></item>
		<item>
		<title>I baptize thee….</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/Ai9-Btc632g/</link>
		<comments>http://nice2all.com/2009/07/01/i-baptize-thee/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 11:49:16 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Free Themes]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4322</guid>
		<description><![CDATA[A sneak preview of the new free WordPress theme that is to be released soon.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">E</span>arlier this week I mentioned that I have started work on a new free WordPress theme. I received quite a bit of feedback on what should be included in this theme and what should be left out.</p>
<p>I have finally made my mind up as to what will be going into the new theme.</p>
<p>A few years ago, when I first started web development, it seemed as if all successful websites and templates were blue in color. Through the years this tendency changed and today there are very few bluish themes/websites out there. I have never yet developed something in blue but that is about to change (who says one has to follow the norm?).</p>
<p>I am going to give you all a sneak preview of the theme but as always there is method to my madness. I am struggling to find a name for the new theme and I am hoping somebody will come up with a stunning name. Unfortunately I have nothing to give away to the person who comes up with the winning name, you will just have to settle for my gratitude.<br />
<span id="more-4322"></span><br />
The theme will have an options page. The options included will however not have a direct effect on the CSS styling and the CSS (and HTML) will still validate. Those options that will directly effect the CSS have not been included in the options page. A custom stylesheet will be added to make it as easy as possible for users to change things like link colors, background colors etc.</p>
<p>Users will be able to choose on which side the sidebar appears, should there be breadcrumb navigation or not, they will be able to insert their Adsense ads directly from the back-end as well as a couple of other options.</p>
<p>The theme is going to get most of the basic website accessibility features built into it. There will be a drop-down menu in place but this will be the only Javascript included in the theme. There will also be quite a few other little goodies but I have to leave something for the actual unveiling.</p>
<p>You are welcome to have a quick look at the <a href="http://nice2all.com/demo/no-name.html">demo page</a>. Your thoughts would be welcomed especially those on a possible name for the theme.</p>
<p>This is merely a demo and the links etc. go nowhere. The stuff currently on the sidebar are some of the things that a user could place there via the options page. The sidebar is fully widgetized and all the standard widgets can be placed on the sidebar as well. You will notice that the same Twitter widget as used on this site is also available on the theme. The code for this was written by <a href="http://www.rarst.net/">Rarst</a> and he has graciously consented to its use in this theme. Thanks Andrey.</p>
<p>The demo also includes the stuff provided by the plugin WP-PageNavi. This plugin will not be distributed with the final product but support for the plugin will be built-in. A user will just have to activate the plugin to make it work.</p>
<p>As is always the case with my themes, the emphasis will be placed on the fastest download times possible as well as all the security functions that can be added via a theme.</p>
<p>The theme is not finished as yet and will also only be released at Nice2Create if and when it has been approved by WordPress.</p>
<p>I am looking forward to hearing your opinions.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/07/01/i-baptize-thee/&amp;title=I+baptize+thee%26%238230%3B." rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/07/01/i-baptize-thee/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/07/01/i-baptize-thee/&amp;t=I+baptize+thee%26%238230%3B." rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+I+baptize+thee%26%238230%3B.+-+http://tinyurl.com/kotx5j" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=I%20baptize%20thee%26%238230%3B.&amp;body=Earlier%20this%20week%20I%20mentioned%20that%20I%20have%20started%20work%20on%20a%20new%20free%20WordPress%20theme.%20I%20received%20quite%20a%20bit%20of%20feedback%20on%20what%20should%20be%20included%20in%20this%20theme%20and%20what%20should%20be%20left%20out.%0D%0A%0D%0AI%20have%20finally%20made%20my%20mind%20up%20as%20to%20what%20will%20be%20going%20into%20the%20new%20theme.%0D%0A%0D%0AA%20few%20years%20ago%2C%20when%20I%20fir - http://nice2all.com/2009/07/01/i-baptize-thee/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/07/01/i-baptize-thee/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/07/01/i-baptize-thee/&amp;title=I+baptize+thee%26%238230%3B." rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/07/01/i-baptize-thee/&amp;title=I+baptize+thee%26%238230%3B." rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=Ai9-Btc632g:wLWwrjBjVkY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=Ai9-Btc632g:wLWwrjBjVkY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=Ai9-Btc632g:wLWwrjBjVkY:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=Ai9-Btc632g:wLWwrjBjVkY:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/Ai9-Btc632g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/07/01/i-baptize-thee/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/07/01/i-baptize-thee/</feedburner:origLink></item>
		<item>
		<title>Breadcrumb Navigation Re-Visited</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/M7WgU61vcL4/</link>
		<comments>http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:02:51 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Intermediate Tutorial]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4315</guid>
		<description><![CDATA[A simple little script to create breadcrumb navigation.]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://nice2all.com/wp-content/wp28-int.jpg" class="alignnone" width="200" height="40" /></p>
<p><span class="drop">A</span>n interesting question came out of the comments that were  made on yesterdays post &#8211; is breadcrumb navigation really necessary for a WordPress blog?</p>
<p>WordPress makes it possible for us to add pages in a hierarchical way. We now also have the same functionality with regards to categories. This could mean that just maybe there is still a need for breadcrumb navigation in WordPress. I decided I am going to give it a shot and include this form of navigation in my next free WordPress theme.</p>
<p>There are quite a few plugins available that provide this functionality but I wanted some or other script to add the functionality directly to the theme. I have previously posted about a <a href="http://nice2all.com/2008/11/24/breadcrumb-navigation/">little script for breadcrumbs</a> but this script fell short in that it made no provision for child pages. I have now updated this script just a little bit.<br />
<span id="more-4315"></span><br />
This script was written specifically for a main menu making use of the different pages in WordPress. Should the main menu be based on the WordPress categories, this script will have to be adapted to provide the hierarchical functionality needed for categories. As the script is now, you will receive the following output:</p>
<p><img alt="" src="http://nice2all.com/wp-content/breadcrumb1.jpg" class="alignnone" width="127" height="45" /><br />
<img alt="" src="http://nice2all.com/wp-content/breadcrumb2.jpg" class="alignnone" width="181" height="49" /><br />
<img alt="" src="http://nice2all.com/wp-content/breadcrumb3.jpg" class="alignnone" width="600" height="48" /><br />
<img alt="" src="http://nice2all.com/wp-content/breadcrumb4.jpg" class="alignnone" width="297" height="47" /><br />
<img alt="" src="http://nice2all.com/wp-content/breadcrumb5.jpg" class="alignnone" width="276" height="49" /><br />
<img alt="" src="http://nice2all.com/wp-content/breadcrumb6.jpg" class="alignnone" width="237" height="47" /><br />
<img alt="" src="http://nice2all.com/wp-content/breadcrumb7.jpg" class="alignnone" width="254" height="49" /></p>
<p>This script is anything but perfect but it does provide the basics I was looking for to use in the mentioned free theme. The code for the navigation is the following:</p>
<pre>
&lt;?php if(is_home()) { ?&gt;
	&lt;span&gt;You are here: Home&lt;/span&gt;
	&lt;?php } else { ?&gt;
  		&lt;span&gt;You are here: &lt;/span&gt;
		&lt;a href=&quot;&lt;?php echo get_bloginfo('url'); ?&gt;&quot; title=&quot;&quot;&gt;Home&lt;/a&gt;
		&lt;?php
		if (is_page()) {
			$parent_id  = $post-&gt;post_parent;
			$breadcrumbs = array();
			while ($parent_id) {
		  		$page = get_page($parent_id);
		  		$breadcrumbs[] = '&lt;a href=&quot;'.get_permalink($page-&gt;ID).' title=&quot;&quot;&gt;'.get_the_title($page-&gt;ID).'&lt;/a&gt;';
		  		$parent_id  = $page-&gt;post_parent;
			}
			$breadcrumbs = array_reverse($breadcrumbs);
			foreach ($breadcrumbs as $crumb) echo ' &amp;raquo; '.$crumb;
			echo '&amp;raquo; ';
			echo the_title();
		} elseif (is_category()) {
			echo '&amp;raquo; ';
			echo 'Archives for ';
			single_cat_title();
		} elseif (is_tag()) {
			echo '&amp;raquo; ';
			echo 'Archives for ';
			single_tag_title();
		} elseif (is_day()) {
			echo '&amp;raquo; ';
			echo 'Archives for ';
			the_time('F jS, Y');
		} elseif (is_month()) {
			echo '&amp;raquo; ';
			echo 'Archives for ';
			the_time('F, Y');
		} elseif (is_year()) {
			echo '&amp;raquo; ';
			echo 'Archives for ';
			the_time('Y');
		} elseif (is_author()) {
			echo '&amp;raquo; ';
			echo 'Author Archive';
		} elseif (isset($_GET['paged']) &amp;&amp; empty($_GET['paged'])) {
			echo '&amp;raquo; ';
			echo 'Blog Archives';
		} elseif (is_search()) {
			echo '&amp;raquo; ';
			echo 'Search Results';
		} elseif (is_single()) {
			echo &quot; &amp;raquo; &quot;;
			the_category(' &amp;raquo; ');
			if (is_single()) {
				echo &quot; &amp;raquo; &quot;;
				the_title();
			}
		}
	  ?&gt;
&lt;?php } ?&gt;
</pre>
<p>This code I saved in a file called <strong>breadcrumb.php</strong>. To call the script in the place where you want the breadcrumb to appear, you need to code the following:</p>
<pre>
&lt;div id=&quot;breadcrumb&quot;&gt;
	&lt;?php $filename = TEMPLATEPATH . '/breadcrumb.php'; if (file_exists($filename)) { include($filename); } ?&gt;
&lt;/div&gt;
</pre>
<p>I would like to get your opinion. Do you think this script goes far enough? Should the script rather be expanded to include further options? Should breadcrumbs be used at all?</p>
<p>Phew, I am asking a lot of questions these days! </p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/&amp;title=Breadcrumb+Navigation+Re-Visited" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/&amp;t=Breadcrumb+Navigation+Re-Visited" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+Breadcrumb+Navigation+Re-Visited+-+http://tinyurl.com/lbyf5c" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Breadcrumb%20Navigation%20Re-Visited&amp;body=%0D%0A%0D%0AAn%20interesting%20question%20came%20out%20of%20the%20comments%20that%20were%20%20made%20on%20yesterdays%20post%20-%20is%20breadcrumb%20navigation%20really%20necessary%20for%20a%20WordPress%20blog%3F%0D%0A%0D%0AWordPress%20makes%20it%20possible%20for%20us%20to%20add%20pages%20in%20a%20hierarchical%20way.%20We%20now%20also%20have%20the%20same%20functionality%20with%20regards%20to%20categories.%20This - http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/&amp;title=Breadcrumb+Navigation+Re-Visited" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/&amp;title=Breadcrumb+Navigation+Re-Visited" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=M7WgU61vcL4:OBlUHIEPzLk:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=M7WgU61vcL4:OBlUHIEPzLk:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=M7WgU61vcL4:OBlUHIEPzLk:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=M7WgU61vcL4:OBlUHIEPzLk:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/M7WgU61vcL4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/06/30/breadcrumb-navigation-re-visit/</feedburner:origLink></item>
		<item>
		<title>Free WordPress Themes</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/V2OeCRZZ7Bg/</link>
		<comments>http://nice2all.com/2009/06/29/wordpress-free-themes/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 08:01:19 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Free Themes]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4302</guid>
		<description><![CDATA[Is this kind of service really beneficial to the theme authors?]]></description>
			<content:encoded><![CDATA[<p><span class="drop">O</span>ver at Nice2Create, Sailor and I offer quite a few WordPress services. Amongst others we build fully customized WordPress themes and we also customize existing free WordPress themes. This last service is proving to be very popular, we are getting about 2 to 3 requests for this service per week right now. There is however one problem, people ask for the cheaper customization of an existing theme and then expect a fully blown customized theme.</p>
<p>All of this has got me thinking. If people are having existing themes changed, could it mean that the free themes that are available out there, are not really delivering the goods? Is it possible that the free theme developers have not kept pace with the requirements of the WordPress community?<br />
<span id="more-4302"></span><br />
I have not released a new free theme for a while now. I have started work on my next effort but maybe it is time that I first try and determine just what it is that the users of these free themes require.</p>
<p>The following are the issues that I would like to receive some clarity on:</p>
<ul>
<li><strong>Javascript</strong> &#8211; Should these features be included. Here I am referring to those drop-down menus, the fancy tabs or maybe even sliding panels. What about those who have turned Javascript support off in their browsers? Should we be worrying about these guys?</li>
<li><strong>Navigation</strong> &#8211; What should the main navigation consist of? Should pages or categories be used in the main menu?</li>
<li><strong>Breadcrumbs</strong> &#8211; Is there still a place for this type of navigation?</li>
<li><strong>Options Page</strong> &#8211; Should this be there and if so, what kind of options are we looking at?</li>
<li><strong>Sidebars</strong> &#8211; Left or right, that is the question? Maybe a combination of both?</li>
<li><strong>Headers</strong> -Should this space be used for other purposes apart from the main form of branding? Here I am speaking about ad banners, subscribe buttons, social site buttons, search bars etc., that could all be placed directly into the header section.</li>
</ul>
<p>I have now asked quite a few questions so I am not going to end this post with my customary question. I will really appreciate your feedback on the matters raised above.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/06/29/wordpress-free-themes/&amp;title=Free+WordPress+Themes" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/06/29/wordpress-free-themes/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/06/29/wordpress-free-themes/&amp;t=Free+WordPress+Themes" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+Free+WordPress+Themes+-+http://tinyurl.com/op58v4" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Free%20WordPress%20Themes&amp;body=Over%20at%20Nice2Create%2C%20Sailor%20and%20I%20offer%20quite%20a%20few%20WordPress%20services.%20Amongst%20others%20we%20build%20fully%20customized%20WordPress%20themes%20and%20we%20also%20customize%20existing%20free%20WordPress%20themes.%20This%20last%20service%20is%20proving%20to%20be%20very%20popular%2C%20we%20are%20getting%20about%202%20to%203%20requests%20for%20this%20service%20per%20week%20righ - http://nice2all.com/2009/06/29/wordpress-free-themes/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/06/29/wordpress-free-themes/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/06/29/wordpress-free-themes/&amp;title=Free+WordPress+Themes" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/06/29/wordpress-free-themes/&amp;title=Free+WordPress+Themes" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=V2OeCRZZ7Bg:J2TZwNxJ8WA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=V2OeCRZZ7Bg:J2TZwNxJ8WA:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=V2OeCRZZ7Bg:J2TZwNxJ8WA:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=V2OeCRZZ7Bg:J2TZwNxJ8WA:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/V2OeCRZZ7Bg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/06/29/wordpress-free-themes/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/06/29/wordpress-free-themes/</feedburner:origLink></item>
		<item>
		<title>Weekend Round-Up – 27 June 2009</title>
		<link>http://feedproxy.google.com/~r/nice2all/~3/KPdnOqcCLFc/</link>
		<comments>http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 07:38:06 +0000</pubDate>
		<dc:creator>Lyndi</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Weekly Summaries]]></category>

		<guid isPermaLink="false">http://nice2all.com/?p=4292</guid>
		<description><![CDATA[This week I am asking for guest posts yet again.]]></description>
			<content:encoded><![CDATA[<p><span class="drop">A</span>nother week has come and gone. This was quite a week, what with all the sport taking place in South Africa at the moment. Against all odds South Africa managed to reach the semi-finals of the FIFA Confederation Cup. Bafana Bafana played exceptionally well (my opinion) and if they keep this up they might just be a force to be reckoned with in the 2010 World Cup. The Springboks managed a win in the first test against the British and Irish Lions. This was a great game and I cannot wait for the second test later today. All this sport is interfering with my blogging time.</p>
<p>A few weeks ago I moved the WordPress themes that used to be on this site to <a href="http://nice2create.com/">Nice2Create</a>. At the time I mentioned that I was expecting this to have a negative influence on this site as these themes generate a lot of traffic from wordpress.org. So far things are not going too badly. There appears to have been another Google PageRank update this last week. This site has managed to hold onto its PR and Nice2Create now has a PR of 2. I am pleased with this but I am not sure for how long this situation could last.<br />
<span id="more-4292"></span></p>
<h3>This past week in short</h3>
<ul>
<li>I started this week off with an article entitled <a href="http://nice2all.com/2009/06/22/seeing-the-big-picture/">Seeing the Big Picture</a>. This post took a look at just what we can do to ensure those big graphics do not break our themes.</li>
<li>This article was followed by a <a href="http://nice2all.com/2009/06/23/wordpress-and-memory-usage/">look at a plugin called WP-Memory-Usage</a>. This post was quite popular and led directly to a guest post which was published later in the week.</li>
<li>In the next article I took a very<a href="http://nice2all.com/2009/06/24/parent-child-lists/"> basic look at styling lists</a> on our blogs. I still think it is a good idea to keep the flow of tutorials for beginners going.</li>
<li>The last post for the week was a guest post by Brian Geisel entitled <a href="http://nice2all.com/2009/06/25/monitoring-wordpress-performance/">Monitoring WordPress Performance</a>. This post was rather technical and it did not generate too many comments. It did help to generate a lot of traffic though. My thanks to Brian. It was because of this traffic that I let the post run for a day longer than what I normally would have, before I posted the next one.</li>
</ul>
<h3>What&#8217;s up in the world of WordPress?</h3>
<p>On the development side we have now reached version 2.8.1 beta 2. The new versions are appearing quite fast after one another and the final release of version 2.8.1 should be around anytime now.</p>
<p>I have noticed that quite a few people have complained about WordPress version 2.8 saying that this version was not adequately tested. Maybe this is a good time to remind everyone that WordPress is open source. The testing is, and should be, done by the users out there, that means you and I. I just find it a bit unfair for anyone to knock Wordress for their so-called lack of testing before new versions appear. I we want the testing to improve, we should be looking at doing our bit. If you have the time, download the development versions, test, send in error reports and in so doing, you will be assisting the entire WordPress community.</p>
<h3>Inside Scoop</h3>
<p>For quite some time now I have had a request for guest posts at the end of all the articles published on this site. Thus far I have only managed to get one guest post and this is something that is worrying me.</p>
<p>With my move to Luanda at the start of next year this whole thing could leave me with quite a problem. I know that I am going to be taking a couple of steps back as from next year, I will be blogging via a dial-up modem. This is not something I am looking forward to.</p>
<p>The idea was that I could overcome this problem by publishing guest posts every now and then. It does not appear as if this is going to happen. Maybe I should be looking at a way of collaborating with other bloggers on this site. Has anyone ever done something like this? Just how would one go about getting something like this off the ground?</p>
<p>Enough moaning and groaning. Enjoy you week and hopefully I will meet you here again during the week.</p>
<p>Till next time. <br /><img src="http://nice2all.com/wp-content/signature.png" alt="" width="100" height="40" /><br />If you have found this article useful, please consider subscribing to the RSS feed. You could do this via your <a href="http://feeds2.feedburner.com/nice2all" title="">favourite feed reader</a> or via <a href="http://feedburner.google.com/fb/a/mailverify?uri=nice2all" title="">Email</a>.</p><p><em>Many of the WordPress hacks, tips and bits of advice provided on this blog, include code snippets. If you are making use of any code provided here kindly take note that I cannot be held responsible for anything that might go wrong on your blog because of the new code. Before making any changes to your files please ensure that these files have been adequately backed-up.</em></p><p>If you are passionate about WordPress and you are interested in guest posting for Nice2All, please <a href="http://nice2all.com/contact/" title="">contact me</a>.</p><p><a href="http://www.cmfads.com/forums/?referrerid=118" title="">CMF Ads - Low cost, no-nonsense advertising</a></p>
<div class="sexy-bookmarks sexy-bookmarks-bg-caring"><ul class="socials"><li class="sexy-stumbleupon"><a href="http://www.stumbleupon.com/submit?url=http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/&amp;title=Weekend+Round-Up+%26%238211%3B+27+June+2009" rel="normal " title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a></li><li class="sexy-technorati"><a href="http://technorati.com/faves?add=http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/" rel="normal " title="Share this on Technorati">Share this on Technorati</a></li><li class="sexy-facebook"><a href="http://www.facebook.com/share.php?u=http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/&amp;t=Weekend+Round-Up+%26%238211%3B+27+June+2009" rel="normal " title="Share this on Facebook">Share this on Facebook</a></li><li class="sexy-twitter"><a href="http://www.twitter.com/home?status=RT+@lyndiwp:+Weekend+Round-Up+%26%238211%3B+27+June+2009+-+http://tinyurl.com/krl27k" rel="normal " title="Tweet This!">Tweet This!</a></li><li class="sexy-mail"><a href="mailto:?&amp;subject=Weekend%20Round-Up%20%26%238211%3B%2027%20June%202009&amp;body=Another%20week%20has%20come%20and%20gone.%20This%20was%20quite%20a%20week%2C%20what%20with%20all%20the%20sport%20taking%20place%20in%20South%20Africa%20at%20the%20moment.%20Against%20all%20odds%20South%20Africa%20managed%20to%20reach%20the%20semi-finals%20of%20the%20FIFA%20Confederation%20Cup.%20Bafana%20Bafana%20played%20exceptionally%20well%20%28my%20opinion%29%20and%20if%20they%20keep%20this%20up%20they%20 - http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/" rel="normal " title="Email this to a friend?">Email this to a friend?</a></li><li class="sexy-comfeed"><a href="http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/feed" rel="normal " title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a></li><li class="sexy-digg"><a href="http://digg.com/submit?phase=2&amp;url=http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/&amp;title=Weekend+Round-Up+%26%238211%3B+27+June+2009" rel="normal " title="Digg this!">Digg this!</a></li><li class="sexy-reddit"><a href="http://reddit.com/submit?url=http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/&amp;title=Weekend+Round-Up+%26%238211%3B+27+June+2009" rel="normal " title="Share this on Reddit">Share this on Reddit</a></li></ul><div style="clear:both;"></div></div><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/nice2all?a=KPdnOqcCLFc:czRqcrlCkUM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/nice2all?i=KPdnOqcCLFc:czRqcrlCkUM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nice2all?a=KPdnOqcCLFc:czRqcrlCkUM:D7DqB2pKExk"><img src="http://feeds.feedburner.com/~ff/nice2all?i=KPdnOqcCLFc:czRqcrlCkUM:D7DqB2pKExk" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/nice2all/~4/KPdnOqcCLFc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://nice2all.com/2009/06/27/weekend-round-up-27-june-2009/</feedburner:origLink></item>
	</channel>
</rss>
