<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Template Tuners Blog on Web Design, SEO &#38; Online Marketing, E-Commerce and more!</title>
	<atom:link href="http://www.template-tuners.com/iblog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.template-tuners.com/iblog</link>
	<description>Freelance graphic designer, Logo design, Seo professional</description>
	<lastBuildDate>Wed, 28 Jul 2010 08:50:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to create an extraordinary Sitemap for WordPress</title>
		<link>http://www.template-tuners.com/iblog/how-to-create-an-extraordinary-sitemap-for-wordpress/</link>
		<comments>http://www.template-tuners.com/iblog/how-to-create-an-extraordinary-sitemap-for-wordpress/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 08:45:51 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sitemap]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=49</guid>
		<description><![CDATA[When making the sitemap I wanted to list all of the posts and also to link to the monthly archives for each post &#8211; that way I would get maximum exposure for my sitemap. The process is relatively simple: - Grab all the months and years from the database - Loop through the list of [...]]]></description>
			<content:encoded><![CDATA[<p>When making the sitemap I wanted to list all of the posts and also to  link to the monthly archives for each post &#8211; that way I would get  maximum exposure for my sitemap.</p>
<p>The process is relatively simple:</p>
<p>- Grab all the months and years from the database<br />
- Loop through the list of dates and grab the posts from each month, displaying them as you go<span id="more-49"></span></p>
<p>Easy right? Now just copy this into functions.php</p>
<pre>function bm_displayArchives() {
	global $month, $wpdb, $wp_version;

	// a mysql query to get the list of distinct years and months that posts have been created
	$sql = 'SELECT
			DISTINCT YEAR(post_date) AS year,
			MONTH(post_date) AS month,
			count(ID) as posts
		FROM ' . $wpdb-&gt;posts . '
		WHERE post_status="publish"
			AND post_type="post"
			AND post_password=""
		GROUP BY YEAR(post_date),
			MONTH(post_date)
		ORDER BY post_date DESC';

	// use get_results to do a query directly on the database
	$archiveSummary = $wpdb-&gt;get_results($sql);

	// if there are any posts
	if ($archiveSummary) {
		// loop through the posts
		foreach ($archiveSummary as $date) {
			// reset the query variable
			unset ($bmWp);
			// create a new query variable for the current month and year combination
			$bmWp = new WP_Query('year=' . $date-&gt;year . '&amp;monthnum=' . zeroise($date-&gt;month, 2) . '&amp;posts_per_page=-1');

			// if there are any posts for that month display them
			if ($bmWp-&gt;have_posts()) {
				// display the archives heading
				$url = get_month_link($date-&gt;year, $date-&gt;month);
				$text = $month[zeroise($date-&gt;month, 2)] . ' ' . $date-&gt;year;

				echo get_archives_link($url, $text, '', '&lt;h3&gt;', '&lt;/h3&gt;');
				echo '&lt;ul&gt;';

				// display an unordered list of posts for the current month
				while ($bmWp-&gt;have_posts()) {
					$bmWp-&gt;the_post();
					echo '&lt;li&gt;&lt;a href="' . get_permalink($bmWp-&gt;post) . '" title="' . wp_specialchars($text, 1) . '"&gt;' . wptexturize($bmWp-&gt;post-&gt;post_title) . '&lt;/a&gt;&lt;/li&gt;';
				}

				echo '&lt;/ul&gt;';
			}
		}
	}
}</pre>
<p>and now insert this in your page to list the sitemap.</p>
<pre>&lt;? php bm_displayArchives() ?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/how-to-create-an-extraordinary-sitemap-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some WordPress Tricks</title>
		<link>http://www.template-tuners.com/iblog/wordpress-tricks/</link>
		<comments>http://www.template-tuners.com/iblog/wordpress-tricks/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 21:57:21 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=40</guid>
		<description><![CDATA[If you are one of the millions of people who use WordPress, this article will help you improve the appearance, functionality, and performance of your WordPress-powered websites. Display WordPress Permalinks outside of the loop &#60;!-- external permalink via post ID --&#62; &#60;a href="&#60;?php echo get_permalink(16); ?&#62;"&#62;Permalink&#60;/a&#62; &#60;!-- external permalink via global $post variable --&#62; &#60;a [...]]]></description>
			<content:encoded><![CDATA[<p>If you are one of the millions of people who use <a title="WordPress" href="http://www.wordpress.org" target="_blank">WordPress</a>, this article  will help you improve the appearance, functionality, and performance of  your WordPress-powered websites.<span id="more-40"></span></p>
<p><strong>Display WordPress Permalinks outside of the loop</strong></p>
<pre><code>&lt;!-- external permalink via post ID --&gt;
&lt;a href="&lt;?php echo get_permalink(16); ?&gt;"&gt;Permalink&lt;/a&gt;

&lt;!-- external permalink via global $post variable --&gt;
&lt;a href="&lt;?php echo get_permalink($post-&gt;ID); ?&gt;"&gt;Permalink&lt;/a&gt;</code></pre>
<p><strong>Make a list with all of your site&#8217;s posts</strong></p>
<p><code>wp_get_archives(type=postbypost&amp;limit=)</code></p>
<p>and if this function doesn’t provide enough flexibility to meet your needs, here is another way</p>
<pre><code>&lt;?php while(have_posts()) : the_post(); ?&gt;
&lt;ul&gt;
	&lt;?php $allposts = get_posts('numberposts=-1&amp;offset=0'); foreach($allposts as $post) : ?&gt;
	&lt;li&gt;&lt;?php the_time('d/m/y'); ?&gt;: &lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;?php endforeach; ?&gt;
&lt;/ul&gt;
&lt;?php endwhile; ?&gt;</code></pre>
<p><strong>Create a custom CSS for recent posts</strong></p>
<pre><code>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
	$currentdate = date('Y-m-d',mktime(0,0,0,date('m'),date('d'),date('Y')));
	$postdate = get_the_time('Y-m-d');
	if ($postdate == $currentdate) {
		echo '&lt;div&gt;';
	} else {
		echo '&lt;div&gt;';
	} ?&gt;
		&lt;a href="&lt;?php the_permalink(); ?&gt;"&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;
	&lt;/div&gt;
&lt;?php endwhile; endif; ?&gt;
</code></pre>
<p>and css style:</p>
<pre><code>.post {
	/* styles for all posts */
}
.post.new {
	/* styles for new posts */
}</code></pre>
<p><strong>Diasble or to limit WordPress post revisions</strong></p>
<p>To disable just add the following line to the wp-config.php file</p>
<pre><code>/* disable post-revisioning nonsense */
define('WP_POST_REVISIONS', FALSE);</code></pre>
<p>or to limit post revision</p>
<pre><code>/* limit number of post revisions */
define('WP_POST_REVISIONS', 3);</code></pre>
<p>Create a good Meta Description, without any plugin</p>
<pre><code>&lt;meta name="description" content="
&lt;?php if ((is_home()) || (is_front_page())) {
	echo ('Your main description goes here');
} elseif(is_category()) {
	echo category_description();
} elseif(is_tag()) {
	echo 'Tag archive page for this blog - ' . single_tag_title();
} elseif(is_month()) {
	echo 'Archive page for this blog - ' . the_time('F, Y');
} else {
	echo get_post_meta($post-&gt;ID, 'metadescription', true);
} ?&gt;" /&gt;</code></pre>
<p><strong>Access post data outside the loop</strong></p>
<p>First, you need to insert this into functions.php</p>
<pre><code>function get_post_data($postId) {
	global $wpdb;
	return $wpdb-&gt;get_row("SELECT * FROM $wpdb-&gt;posts WHERE ID=$postId");
}</code></pre>
<p>and after, add this code to the desired location outside of the loop</p>
<pre><code>&lt;?php $data = get_post_data(85);
	echo $data-&gt;post_date;     // post date
	echo $data-&gt;post_title;    // post title
	echo $data-&gt;post_content;  // post content
	echo $data-&gt;comment_count; // comments number
?&gt;</code></pre>
<p><strong>Display performance Statistics for WordPress pages</strong></p>
<p>Everyone knows what that means</p>
<pre><code>&lt;!-- 24 queries in 0.333 seconds --&gt;</code></pre>
<p>This information is generated by including the following code in your footer.php or any page you would like</p>
<pre><code>&lt;!-- &lt;?php echo get_num_queries(); ?&gt; queries in &lt;?php timer_stop(3); ?&gt; seconds --&gt;</code></pre>
<p><strong>Display most commented posts without a plugin</strong></p>
<pre><code>&lt;ul&gt;
&lt;?php
$result = $wpdb-&gt;get_results("SELECT comment_count, ID, post_title FROM $wpdb-&gt;posts ORDER BY comment_count DESC LIMIT 0 , 10"); // NUMBER OF POSTS
foreach ($result as $topten) {
	$postid = $topten-&gt;ID;
	$title = $topten-&gt;post_title;
	$commentcount = $topten-&gt;comment_count;
	if ($commentcount != 0) {
?&gt;
&lt;li&gt;&lt;a href="&lt;?php echo get_permalink($postid); ?&gt;"&gt;&lt;?php echo $title ?&gt;&lt;/a&gt;&lt;/li&gt;
&lt;?php } } ?&gt;
&lt;/ul&gt;</code></pre>
<p><strong>Display a Custom Message on a specific day</strong></p>
<pre><code>&lt;?php
if ((date('m') == 4) &amp;&amp; (date('d') == 16)) { ?&gt;
	&lt;p&gt;Today is &lt;a href="http://www.template-tuners.com/about-me"&gt;my birthday&lt;/a&gt;!&lt;/p&gt;
&lt;?php } ?&gt;</code></pre>
<p>or probably you want to remove a script or a stylesheet on a specific day</p>
<pre><code>&lt;?php
if ((date('m') !== 5) &amp;&amp; (date('d') !== 19)) { ?&gt;</code><code>
</code><code>&lt;link rel="stylesheet" href="&lt;?php bloginfo('stylesheet_url'); ?&gt;" type="text/css" media="screen" /&gt;
&lt;?php } ?&gt;</code></pre>
<p><strong>Display the total number of users from your WordPress blog</strong></p>
<pre><code>$users = $wpdb-&gt;get_var("SELECT COUNT(ID) FROM $wpdb-&gt;users");
echo $users." registered users.";</code></pre>
<p><strong>Display automatic  Tynyurls for your posts</strong></p>
<p>Add this into functions.php</p>
<pre><code>function getTinyUrl($url) {
	$tinyurl = file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
	return $tinyurl;
}</code></pre>
<p>Then, call the function and display the <acronym title="Uniform Resource Locator">URL</acronym> by placing this code into your <code>single.php</code> file in the desired location within the loop</p>
<pre><code>&lt;?php $turl = getTinyUrl(get_permalink($post-&gt;ID));
echo 'TinyURL for this post: &lt;a href="'.$turl.'"&gt;'.$turl.'&lt;/a&gt;'; ?&gt;</code></pre>
<p><strong>Display first image for every post</strong></p>
<p>Add this into functions.php</p>
<pre><code>function catch_that_image() {
	global $post, $posts;
	$first_img = '';
	ob_start();
	ob_end_clean();
	$output = preg_match_all('/&lt;img.+src=[\'"]([^\'"]+)[\'"].*&gt;/i', $post-&gt;post_content, $matches);
	$first_img = $matches [1] [0];

	if(empty($first_img)){
		$first_img = "/images/default.jpg"; // default image
	}
	return $first_img;
}</code></pre>
<p>Then, to call the function and display the images as thumbnails, place  the following code into the desired location within your loop</p>
<pre><code>&lt;?php echo catch_that_image(); ?&gt;</code></pre>
<p><strong>Display Popular Posts without a plugin</strong></p>
<pre><code>&lt;ul&gt;
&lt;?php $result = $wpdb-&gt;get_results("
	SELECT comment_count, ID, post_title
	FROM $wpdb-&gt;posts ORDER BY comment_count DESC LIMIT 0 , 7
	");
foreach ($result as $post) {
	setup_postdata($post);
	$postid = $post-&gt;ID;
	$title = $post-&gt;post_title;
	$commentcount = $post-&gt;comment_count;
	if ($commentcount != 0) { ?&gt;
	&lt;li&gt;&lt;a href="&lt;?php echo get_permalink($postid); ?&gt;"&gt;
	&lt;?php echo $title; ?&gt;&lt;/a&gt; [&lt;?php echo $commentcount ?&gt;]&lt;/li&gt;
	&lt;?php } ?&gt;
&lt;?php } ?&gt;
&lt;/ul&gt;</code></pre>
<p><strong>Display Ads only on first 2 posts</strong></p>
<pre><code>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
	&lt;?php if ($wp_query-&gt;current_post &lt; 2) { ?&gt;
	&lt;!-- ads here --&gt;
	&lt;?php } ?&gt;
&lt;?php endwhile; else: ?&gt;
&lt;?php endif; ?&gt;</code></pre>
<p><strong>Add aditional link pages to wp-list-pages</strong></p>
<p>Add this into functions.php<strong><br />
</strong></p>
<pre><code>function add_bookmarks_to_menu($output) {
	$bookmarks = (array) get_bookmarks('hide_invisible=0&amp;category_name=wp_list_pages');
	foreach ($bookmarks as $bookmark) {
		$output .= "&lt;li&gt;&lt;a href='{$bookmark-&gt;link_url}'  title='{$bookmark-&gt;link_name}'&gt;{$bookmark-&gt;link_name}&lt;/a&gt;&lt;/li&gt;\n";        

	}
	return $output;
}
add_filter('wp_list_pages', 'add_bookmarks_to_menu');</code></pre>
<p>Once this code is in place, login to your WordPress Admin and follow  these steps for each link that you would like to add to the page list:</p>
<p>- In the Admin, go to Links &gt; Add New<br />
- Enter a name and URL for your link<br />
- Add the link to a new category called &quot;wp_list_pages&quot;<br />
- select &quot;Keep this link private&quot;<br />
- Click &quot;Add Link&quot;<br />
- Done.</p>
<p>I hope these tricks will help someone!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/wordpress-tricks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Find out how to check if your WordPress Theme is SEO optimized</title>
		<link>http://www.template-tuners.com/iblog/find-out-how-to-check-if-your-wordpress-theme-is-seo-optimized/</link>
		<comments>http://www.template-tuners.com/iblog/find-out-how-to-check-if-your-wordpress-theme-is-seo-optimized/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 10:57:13 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=12</guid>
		<description><![CDATA[Almost 99.9% of WordPress Theme Developers out there say that their wordpress theme is SEO optimized. But not all of them really are, even expensive premium themes. All they do is recommend the installation of All-in-One SEO Pack. But in my opinion, All-in-One SEO Pack is so not enough to make your WordPress theme SEO [...]]]></description>
			<content:encoded><![CDATA[<p>Almost 99.9% of WordPress Theme Developers out there say that their  wordpress theme is SEO optimized. But not all of them really are, even  expensive premium themes. All they do is recommend the installation of  All-in-One SEO Pack. But in my opinion, All-in-One SEO Pack is so not enough to make  your WordPress theme SEO optimized especially if the template tags are messed  up themselves.<span id="more-12"></span></p>
<p>If you want to make it easier I guess All-in-One SEO Pack is a good  plugin. But as I have mentioned previously All-in-One SEO Pack cannot fix messed up H1 tags that are in your theme. And these tags is important in SEO.</p>
<p>The following is a step-by-step method on how to check if your WordPress theme is SEO Optimized:</p>
<p>1. Install the Web Developer Plugin for Firefox, this only works in Firefox so if you dont have it you better install it.</p>
<pre>https://addons.mozilla.org/en-US/firefox/addon/60</pre>
<p>2. Visit your site after you enabled the theme.</p>
<p>4. Click on CSS &gt; Disable Styles &gt; All Styles on the Web Developer Toolbar or simply press Ctrl-Shift-S.</p>
<p>What this does is strip out all the javasript and css styling in your  website. Something like what a google bot will do when it crawls your  site.</p>
<p>Now to know if that theme is SEO Optimized, the Title or your main  keyword should be at the very top of the webpage after you disabled  styling. Some themes will show your logo first with no keyword. But in  my opinion its better if your main keyword is the first one up there. And as much as possible your  main content should go before the sidebar and the footer.</p>
<p>H1 Tags</p>
<p>From my knowledge in SEO there should only be one H1 tag occuring in any  given page. This is where most themes mess up your SEO. In past I used for a blog 6 H1 tags in the home page, the Blog Title  and the recent posts were all tagged with H1. I tried searching my post  through google and the first result that came up was from my homepage  and did not direct me to where the actual post was, this was pretty  weird and messed up till I found out about the H1 tags.</p>
<p>To check this just press Ctrl + U on your browser and then Ctrl + F and  find how many H1 tags there are in the page your viewing.</p>
<p>In the homepage the H1 should be your main keyword, while on the post page the post title should be wrapped in H1 tag.</p>
<p>Well I guess that&#8217;s it. Also dont forget about the meta description, and  meta keywords tag on your header, as this is a pretty big factor in  SEO, but talk about this next time <img src='http://www.template-tuners.com/iblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/find-out-how-to-check-if-your-wordpress-theme-is-seo-optimized/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress SEO &amp; Marketing FREE Plugins</title>
		<link>http://www.template-tuners.com/iblog/wordpress-seo-and-marketing-free-plugins/</link>
		<comments>http://www.template-tuners.com/iblog/wordpress-seo-and-marketing-free-plugins/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 15:08:50 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=10</guid>
		<description><![CDATA[WordPress Plugin: All in One SEO Pack Optimizes your WordPress blog for Search Engines. Download the latest plugin version here ». WordPress Plugin: HeadSpace2 SEO HeadSpace2 is an all-in-one meta-data manager that allows you to fine-tune the SEO potential of your site. Download the latest plugin version here ». WordPress Plugin: Google XML Sitemaps This [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress Plugin: <a rel="nofollow" href="http://semperfiwebdesign.com/portfolio/wordpress/wordpress-plugins/all-in-one-seo-pack/" target="_blank"><strong>All in One SEO Pack</strong></a><br />
Optimizes your WordPress blog for Search Engines. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://urbangiraffe.com/plugins/headspace2/" target="_blank"><strong>HeadSpace2 SEO</strong></a><br />
HeadSpace2 is an all-in-one meta-data manager that allows you to  fine-tune the SEO potential of your site. Download the latest plugin  version <a href="http://wordpress.org/extend/plugins/headspace2/" target="_blank">here »</a>.<span id="more-10"></span></p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" target="_blank"><strong>Google XML Sitemaps</strong></a><br />
This plugin will create a Google sitemaps compliant XML-Sitemap of your  WordPress blog. It supports all of the WordPress generated pages as  well as custom ones. Everytime you edit or create a post, your sitemap  is updated. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.seo-watcher.net/" target="_blank"><strong>Seo Watcher</strong></a><br />
Briefly said, Seo Watcher checks your daily Google rankings directly  inside of WordPress. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/seo-watcher/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-smart-links" target="_blank"><strong>SEO Smart Links</strong></a><br />
SEO Smart Links can automatically link keywords and phrases in your  posts and comments with corresponding posts, pages, categories and tags  on your blog. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/seo-automatic-links/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://omninoggin.com/wordpress-plugins/seo-no-duplicate-wordpress-plugin/" target="_blank"><strong>SEO No Duplicate</strong></a><br />
This simple plugin helps you easily tell the search engine bots the  preferred version of a page by specifying the canonical properly within  your head tag. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/seo-no-duplicate/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.prelovac.com/vladimir/wordpress-plugins/seo-friendly-images" target="_blank"><strong>SEO Friendly Images</strong></a><br />
SEO Friendly Images is a WordPress optimization plugin which  automatically updates all images with proper ALT and TITLE attributes  if your images do not have ALT and TITLE already set. Download the  latest plugin version <a href="http://wordpress.org/extend/plugins/seo-image/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.netconcepts.com/seo-title-tag-plugin/" target="_blank"><strong>SEO Title Tag</strong></a><br />
SEO Title Tag makes is dead-easy to optimize the title tags across your  WordPress-powered blog or website. Not just your posts, not just your  home page, but any and every title tag on your site. Download the  latest plugin version <a href="http://wordpress.org/extend/plugins/seo-title-tag/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.microkid.net/wordpress/permalinks-moved-permanently/" target="_blank"><strong>Permalinks Moved Permanently</strong></a><br />
If you just migrated your WordPress blog from one permalink structure  to another, and you don&#8217;t want to lose Pagerank or traffic that  accesses your blog through the old permalinks, this is for you.  Download the latest plugin version <a href="http://wordpress.org/extend/plugins/permalinks-moved-permanently/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.tsaiberspace.net/blog/2007/07/20/wp-chiclets/" target="_blank"><strong>WP Chiclets</strong></a><br />
This sidebar widget provides a set of RSS chiclets for users to add  your blog to their RSS reader. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/wp-chiclets/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://adambrown.info/b/widgets/kb-robots-txt/" target="_blank"><strong>KB Robots.txt</strong></a><br />
This plugin should work with most versions of WordPress, but it is  particularly intended for WP-MU installations, since it allows each  WPMU blog to have a unique robots.txt file. Download the latest plugin  version <a href="http://wordpress.org/extend/plugins/kb-robotstxt/" target="_blank">here »</a>.</p>
<p>WordPress Plugin: <a rel="nofollow" href="http://www.oratransplant.nl/uga/" target="_blank"><strong>Ultimate Google Analytics</strong></a><br />
Plugin to add Google Analytics JavaScript to each page on your weblog  without making any changes to your template. The plugin can also add  tracking to outbound links, downloads from your own site and mailto:  links. Download the latest plugin version <a href="http://wordpress.org/extend/plugins/ultimate-google-analytics/" target="_blank">here »</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/wordpress-seo-and-marketing-free-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Customize Right Click Menu in Flash</title>
		<link>http://www.template-tuners.com/iblog/how-to-customize-right-click-menu-in-flash/</link>
		<comments>http://www.template-tuners.com/iblog/how-to-customize-right-click-menu-in-flash/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 15:06:50 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[as2 right click]]></category>
		<category><![CDATA[flash as3]]></category>
		<category><![CDATA[flash right click]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=8</guid>
		<description><![CDATA[Do you want to protect your flash with a copyright text or to include a link to your website in Adobe Right Click Menu? In this tutorial I’ll show you the steps to create a Custom Right Click Menu. Code for AS2: function rightclickMenu(){} function clickMenu2(){ getURL("http://www.template-tuners.com", _blank); } function clickMenu3(){ getURL("http://www.template-tuners.com/iblog/", _blank); } MENU [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to protect your flash with a copyright text or to include a link to your website in Adobe Right Click Menu?<br />
In this tutorial I’ll show you the steps to create a <strong>Custom Right Click Menu</strong>.<span id="more-8"></span></p>
<p><strong>Code for AS2:</strong></p>
<pre class="brush: as3;">function rightclickMenu(){}
function clickMenu2(){
    getURL("http://www.template-tuners.com", _blank);
}
function clickMenu3(){
    getURL("http://www.template-tuners.com/iblog/", _blank);
}

MENU = new ContextMenu();
MENU.hideBuiltInItems();

Functioned = new ContextMenuItem("© Template Tuners 2010", clickMenu);
Functioned2 = new ContextMenuItem("Tutorial By Template Tuners", clickMenu2);
Functioned3 = new ContextMenuItem("Template Tuners Blog", clickMenu3);

MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);

_root.menu = MENU;
</pre>
<p><strong>Code for AS3:</strong><br />
AS3: – org &gt; addons &gt; CustomMenu.as</p>
<pre class="brush: as3;">package org.addons{
    import flash.display.*;
    import flash.events.*;
    import flash.net.*;
    import flash.ui.*;

    dynamic public class CustomMenu extends Sprite{;
        public static var menuItem2:ContextMenuItem=new ContextMenuItem("Go Fullscreen");
        public static var menuItem3:ContextMenuItem=new ContextMenuItem("Exit Fullscreen");
        public static var cm:ContextMenu=new ContextMenu;
        public static var year:Date=new Date;
        public static var menuItem1:ContextMenuItem=new ContextMenuItem(year.getFullYear() + "Template Tuners");

        public function CustomMenu() {
            // la la la
        }

        public static function goToMainSite(param1:ContextMenuEvent):void {
            var _loc_2:URLRequest;
            _loc_2=new URLRequest("http://www.template-tuners.com");
            navigateToURL(_loc_2,"_blank");
        }

        public static function buildMenu(stage:Object):CustomMenu {
            var _loc_2:CustomMenu;
            _loc_2=new CustomMenu ;
            Global.data._game.addChild(_loc_2);
            trace("RIGHT CLICK MENU ENABLED");
            menuItem3.separatorBefore=true;
            menuItem3.enabled=false;
            menuItem1.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,goToMainSite);
            menuItem2.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,goFullScreen);
            menuItem3.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,exitFullScreen);
            cm.hideBuiltInItems();
            cm.customItems.push(menuItem1,menuItem2,menuItem3);
            Global.data._game.contextMenu=cm;
            return _loc_2;
        }

        public static function goFullScreen(param1:ContextMenuEvent):void {
            Global.data._game.displayState=StageDisplayState.FULL_SCREEN;
            menuItem2.enabled=false;
            menuItem3.enabled=true;
            return;
        }

        public static function exitFullScreen(param1:ContextMenuEvent):void {
            Global.data._game.displayState=StageDisplayState.NORMAL;
            menuItem2.enabled=true;
            menuItem3.enabled=false;
            return;
        }
    }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/how-to-customize-right-click-menu-in-flash/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XML WordPress sitemap generated by PHP</title>
		<link>http://www.template-tuners.com/iblog/xml-wordpress-sitemap-generated-by-php/</link>
		<comments>http://www.template-tuners.com/iblog/xml-wordpress-sitemap-generated-by-php/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 15:05:59 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=6</guid>
		<description><![CDATA[Below you will find the PHP code for generating a proffesional XML sitemap, compatible with Google Webmaster Tools. The PHP script connects to the WordPress database, from where it gets all the Posts and post them in the XML. The entire script is fully automatized, you only have to upload it in public_html. Easy ha!? [...]]]></description>
			<content:encoded><![CDATA[<p>Below you will find the PHP code for generating a proffesional XML sitemap, compatible with Google Webmaster Tools. The PHP script connects to the WordPress database, from where it gets all the Posts and post them in the XML.</p>
<p>The entire script is fully automatized, you only have to upload it in <strong>public_html</strong>. Easy ha!? <img src='http://www.template-tuners.com/iblog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<span id="more-6"></span></p>
<pre class="brush: xml;">&lt; ?php require('wp-blog-header.php');
header('Content-type: text/xml; charset=' . get_settings('blog_charset'), true); ?&gt;
&lt; ?php echo ''; ?&gt;
<!-- generator="http://www.template-tuners.com/"-->

            &lt; ?php bloginfo('url') ?&gt;
            &lt; ?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?&gt;
            always
1.0

        &lt; ?php $sitemap = $wpdb-&gt;get_results("SELECT * FROM $wpdb-&gt;posts WHERE post_status = 'publish' ORDER by post_modified DESC"); ?&gt;
        &lt; ?php foreach ($sitemap as $sitemap) { ?&gt;

            &lt; ?php echo get_permalink($sitemap-&gt;ID); ?&gt;
            &lt; ?php echo mysql2date('Y-m-d\TH:i:s\Z', $sitemap-&gt;post_modified, false); ?&gt;
            daily
0.8

&lt; ?php } ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/xml-wordpress-sitemap-generated-by-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top WordPress Plugins for Google Adsense</title>
		<link>http://www.template-tuners.com/iblog/top-wordpress-plugins-for-google-adsense/</link>
		<comments>http://www.template-tuners.com/iblog/top-wordpress-plugins-for-google-adsense/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 15:05:03 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[adsense]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=4</guid>
		<description><![CDATA[Want more money from your WordPress website/blog? Below is a list with best WordPress Plugins for Google Adsense: Adsense Deluxe – offers advanced options for managing the automatic insertion of Google AdSense or Yahoo Publisher Network (YPN) ads to your WordPress posts. Easily switch all AdSense ads to a new color scheme across the entire [...]]]></description>
			<content:encoded><![CDATA[<p>Want more money from your WordPress website/blog? Below is a list with best WordPress Plugins for Google Adsense:</p>
<p><a href="http://www.acmetech.com/blog/2005/07/26/adsense-deluxe-wordpress-plugin/">Adsense Deluxe</a> – offers advanced options for managing the automatic insertion of Google AdSense or Yahoo Publisher Network (YPN) ads to your WordPress posts. Easily switch all AdSense ads to a new color scheme across the entire site.<span id="more-4"></span></p>
<p><a href="http://www.biggnuts.com/adsense-plugin/">Adsense Injection</a> – inserts Adsense code randomly into a pre-existing blog. Takes a random paragraph (or br tag) break in your article and inserts adsense code. It does one per story on multi-post pages (home, archive, category) and let&#8217;s you pick how many to show on single post pages.</p>
<p><a href="http://philhord.com/phord/adsense-inline-with-wordpress-blog-posts/">Adsense Inline</a> – inserts Google adsense in blog posts.</p>
<p><a href="http://shylockblogging.com/shylock-adsense-plugin/">Shylock Adsense WordPress plugin</a> – allows you to insert Adsense ads on your blog without modifying the template. Set it up to show different Adsense ads for articles older then ‘n’ days. E.g. insert a 468&#215;60 ad at the bottom of a new article for regular readers, and replace with higher paying 336&#215;280 ad after 7 days for the search engine visitors.</p>
<p><a href="http://www.supriyadisw.net/2006/07/adsense-beautifier">Adsense Beautifier</a> – makes your Adsense look beautiful by placing images beside them to increase your clicks (CTR) and subsequent Adsense earnings. (May <a href="http://www.quickonlinetips.com/archives/2007/01/is-adsense-beautifier-compliant-with-google-adsense-terms/">not be compliant</a> with Adsense TOS now)</p>
<p><a href="http://www.mikesmullin.com/2006/04/01/adsense-widget-wordpress-sidebar/">AdSense Widget for WordPress Sidebar</a> – Google AdSense widget designed for the new WordPress Sidebar Widgets plug-in.</p>
<p><a href="http://blog.taragana.com/index.php/archive/wordpress-plugin-adrotator-rotate-your-ads-including-adsense-dynamically/">AdRotator WordPress Plugin</a> – rotates your adsense ads with other affiliate programs like Chitika Eminimalls wherever you want. Helps to reduce ad blindness and test different ad formats and affiliate programs.</p>
<p><a href="http://www.internetvibes.net/2006/09/29/adsense-wordpress-plugin/">Adsense Earnings WordPress Plugin</a> – displays your adsense earning details within wordpress admin panel.</p>
<p><a href="http://wordpress.org/extend/plugins/adsense-manager/">AdSense Manager</a> – is a WordPress plugin for managing AdSense ads on your blog. It generates code automatically and allows positioning with Widgets.</p>
<p><a href="http://adsense.ayanev.com/">AdSense Sharing Revenue and Earnings System</a> – allows you to view your adsense earnings and share your adsense impressions with your friends and co-authors.</p>
<p><a href="http://www.harleyquine.com/php-scripts/author-adsense/">Author Adsense WordPress Plugin</a> – allows blog authors to enter their Google Adsense Publisher ID and have ads displayed on their own posts generating revenue. Admin can set the ratio of author&#8217;s ads to admin ads.</p>
<p><a href="http://www.harleyquine.com/php-scripts/author-adsense-mu-plugin/">Author Adsense MU Plugin</a> – Webmasters of WordPress MU sites can generate adsense revenue from hosted blogs as this script allows you to set an admin ID and the ratio of admin ad&#8217;s to blogger&#8217;s ads.</p>
<p><a href="http://urbangiraffe.com/plugins/google-ad-wrap/">Google Ad Wrap</a> –  wraps posts and comments inside Section Targeting tags for better targeted ads.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/top-wordpress-plugins-for-google-adsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.template-tuners.com/iblog/hello-world/</link>
		<comments>http://www.template-tuners.com/iblog/hello-world/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 14:59:02 +0000</pubDate>
		<dc:creator>Axinte Adrian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[axinte adrian]]></category>
		<category><![CDATA[template-tuners]]></category>
		<category><![CDATA[welcome]]></category>

		<guid isPermaLink="false">http://www.template-tuners.com/iblog/?p=1</guid>
		<description><![CDATA[Welcome to Template Tuners Blog! This is my first post on Template Tuners blog!]]></description>
			<content:encoded><![CDATA[<p>Welcome to Template Tuners Blog!<br />
This is my first post on Template Tuners blog! <img src='http://www.template-tuners.com/iblog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.template-tuners.com/iblog/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
