<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: WordPress SEO Theme Talian 5 with AdSense/Clickbank Ads</title>
	<atom:link href="http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html</link>
	<description>AdSense templates and SEO themes for WordPress 3.2.1</description>
	<lastBuildDate>Fri, 03 Feb 2012 17:30:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: WordPress SEO Themes</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49684</link>
		<dc:creator>WordPress SEO Themes</dc:creator>
		<pubDate>Sat, 21 Jan 2012 16:09:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49684</guid>
		<description>I&#039;m using more complex thumbnail code for Stallion that uses a thumbnail upload feature built into Stallion (you can upload an image to use as the thumbnail) or links into the WordPress featured image feature or uses a YouTube screenshot or as a last resort grabs the last image from the post (your code does the last part only).

Stallion also links into the Timthumb.php script to keep the thumbnails small, you can upload a 1000px by 500px image and it will generate a thumbnail using the exact size (say 180px by 120px) you set under the Stallion options page. The thumbnails are also used in combination with the Stallion SEO Super Comments Feature: if you click the &quot;WordPress SEO Theme Talian 5 with AdSense/Clickbank Ads&quot; link on the bottom right corner of this comment it takes you to the Stallion SEO Super Comments version of the comment (a Google indexable SEO&#039;d page generated from this comment) and it&#039;s using a thumbnail from this post (all automated). The Stallion SEO Super Comments pages can generate SERPs in their own right on sites that have a fair number of comments.

This will soon all be added to Talian 6.3.

The time you spent coding the above into Talian 3 you could have setup Stallion 6.2 and generated a custom css file etc... to take into account your modifications :-)

David</description>
		<content:encoded><![CDATA[<p>I&#8217;m using more complex thumbnail code for Stallion that uses a thumbnail upload feature built into Stallion (you can upload an image to use as the thumbnail) or links into the WordPress featured image feature or uses a YouTube screenshot or as a last resort grabs the last image from the post (your code does the last part only).</p>
<p>Stallion also links into the Timthumb.php script to keep the thumbnails small, you can upload a 1000px by 500px image and it will generate a thumbnail using the exact size (say 180px by 120px) you set under the Stallion options page. The thumbnails are also used in combination with the Stallion SEO Super Comments Feature: if you click the &#8220;WordPress SEO Theme Talian 5 with AdSense/Clickbank Ads&#8221; link on the bottom right corner of this comment it takes you to the Stallion SEO Super Comments version of the comment (a Google indexable SEO&#8217;d page generated from this comment) and it&#8217;s using a thumbnail from this post (all automated). The Stallion SEO Super Comments pages can generate SERPs in their own right on sites that have a fair number of comments.</p>
<p>This will soon all be added to Talian 6.3.</p>
<p>The time you spent coding the above into Talian 3 you could have setup Stallion 6.2 and generated a custom css file etc&#8230; to take into account your modifications <img src='http://www.google-adsense-templates.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ziv</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49681</link>
		<dc:creator>ziv</dc:creator>
		<pubDate>Sat, 21 Jan 2012 13:49:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49681</guid>
		<description>David
You wrote: 
&gt;&gt; Adding thumbnails to a WordPress theme isn’t an easy thing to do, every archive template file needs the code and it needs to be built into the theme in otherways. 

[[please delete this hereunder if you wish not to show piece of codes to the readers]]
I managed to add a thumbnail to the category page. I am grab the first image from the post and display it side by side the link. 

Here&#039;s the code to add to the funcion.php
&lt;?php 
function catch_that_image() {
  global $post, $posts;
  $first_img = &#039;&#039;;
  ob_start();
  ob_end_clean();
  $output = preg_match_all(&#039;//i&#039;, $post-&gt;post_content, $matches);
  $first_img = $matches [1] [0];

  if(empty($first_img)){ //Defines a default image
    $first_img = &quot;http://www.job-interview-site.com/images/default.jpg&quot;;
  }
  return $first_img;
}

Once done, you can simply call the function within the loop to display the first image from the post.

That is what I&#039;ve added to the category page before the link to the post: 


&lt;a href=&quot;&quot;&gt;&lt;img src=&quot;&quot; alt=&quot;&quot; title=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; /&gt;&lt;/a&gt;

Ziv</description>
		<content:encoded><![CDATA[<p>David<br />
You wrote:<br />
&gt;&gt; Adding thumbnails to a WordPress theme isn’t an easy thing to do, every archive template file needs the code and it needs to be built into the theme in otherways. </p>
<p>[[please delete this hereunder if you wish not to show piece of codes to the readers]]<br />
I managed to add a thumbnail to the category page. I am grab the first image from the post and display it side by side the link. </p>
<p>Here&#8217;s the code to add to the funcion.php<br />
&lt;?php<br />
function catch_that_image() {<br />
  global $post, $posts;<br />
  $first_img = &#039;&#039;;<br />
  ob_start();<br />
  ob_end_clean();<br />
  $output = preg_match_all(&#039;//i&#8217;, $post-&gt;post_content, $matches);<br />
  $first_img = $matches [1] [0];</p>
<p>  if(empty($first_img)){ //Defines a default image<br />
    $first_img = &#8220;http://www.job-interview-site.com/images/default.jpg&#8221;;<br />
  }<br />
  return $first_img;<br />
}</p>
<p>Once done, you can simply call the function within the loop to display the first image from the post.</p>
<p>That is what I&#8217;ve added to the category page before the link to the post: </p>
<p>&lt;a href=&quot;&#8221;&gt;&lt;img src=&quot;&#8221; alt=&#8221;" title=&#8221;" width=&#8221;100&#8243; height=&#8221;100&#8243; /&gt;</p>
<p>Ziv</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ziv</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49601</link>
		<dc:creator>ziv</dc:creator>
		<pubDate>Wed, 18 Jan 2012 16:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49601</guid>
		<description>Yes I know I can install the next versions and I am going to do that.
Thank you.
I always test on the PC before getting things live on the site.

&gt; WordPress is supposed to save your old widget settings (not tested the feature).

Yes it works. The reason W added this feature is because people are using second theme for mobile devices. So they need to switch back and forth. 

BTW: If next Talian/Stalion versions will be mobile friendly (like twenty-eleven), you&#039;d rock.</description>
		<content:encoded><![CDATA[<p>Yes I know I can install the next versions and I am going to do that.<br />
Thank you.<br />
I always test on the PC before getting things live on the site.</p>
<p>&gt; WordPress is supposed to save your old widget settings (not tested the feature).</p>
<p>Yes it works. The reason W added this feature is because people are using second theme for mobile devices. So they need to switch back and forth. </p>
<p>BTW: If next Talian/Stalion versions will be mobile friendly (like twenty-eleven), you&#8217;d rock.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress SEO Themes</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49598</link>
		<dc:creator>WordPress SEO Themes</dc:creator>
		<pubDate>Wed, 18 Jan 2012 10:16:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49598</guid>
		<description>You are missing out on a LOT of SEO improvements and other feature upgrades.

Since you are running Talian 3 you know you can install Talian 5 and Stallion 6 independently?

Install Talian 5 for example (Stallion 6 is better), activate, test it out if you don&#039;t like it switch back to Talian 3. Worse case scenario is some of your widgets might need re-adding though apparently in WordPress 3.3* that&#039;s been fixed/improved, WordPress is supposed to save your old widget settings (not tested the feature).

David</description>
		<content:encoded><![CDATA[<p>You are missing out on a LOT of SEO improvements and other feature upgrades.</p>
<p>Since you are running Talian 3 you know you can install Talian 5 and Stallion 6 independently?</p>
<p>Install Talian 5 for example (Stallion 6 is better), activate, test it out if you don&#8217;t like it switch back to Talian 3. Worse case scenario is some of your widgets might need re-adding though apparently in WordPress 3.3* that&#8217;s been fixed/improved, WordPress is supposed to save your old widget settings (not tested the feature).</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ziv</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49570</link>
		<dc:creator>ziv</dc:creator>
		<pubDate>Tue, 17 Jan 2012 13:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49570</guid>
		<description>Thanks for your response,
I know I am missing. Are these new SEO features/tricks? 
I must set a week for working on it.  
Cheers</description>
		<content:encoded><![CDATA[<p>Thanks for your response,<br />
I know I am missing. Are these new SEO features/tricks?<br />
I must set a week for working on it.<br />
Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress SEO Themes</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49566</link>
		<dc:creator>WordPress SEO Themes</dc:creator>
		<pubDate>Tue, 17 Jan 2012 10:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49566</guid>
		<description>Adding thumbnails to a WordPress theme isn&#039;t an easy thing to do, every archive template file needs the code and it needs to be built into the theme in otherways. The code I use for Stallion 6.2 (and will be added to the next release of Talian) also includes specific code for other Stallion features like the Stallion featured images, so not possible to add it to Talian 3.

If you are set on not upgrading from Talian 3 look to see if there&#039;s any thumbnail plugins as I&#039;m not making any changes to the Talian 3 code (not looked at Talian 3 in years).

You are missing out on loads of features sticking with Talian 3, Talian 5 (40+ options) was a big update and Stallion 6 (250+ options) was a big update from Talian 5.

David</description>
		<content:encoded><![CDATA[<p>Adding thumbnails to a WordPress theme isn&#8217;t an easy thing to do, every archive template file needs the code and it needs to be built into the theme in otherways. The code I use for Stallion 6.2 (and will be added to the next release of Talian) also includes specific code for other Stallion features like the Stallion featured images, so not possible to add it to Talian 3.</p>
<p>If you are set on not upgrading from Talian 3 look to see if there&#8217;s any thumbnail plugins as I&#8217;m not making any changes to the Talian 3 code (not looked at Talian 3 in years).</p>
<p>You are missing out on loads of features sticking with Talian 3, Talian 5 (40+ options) was a big update and Stallion 6 (250+ options) was a big update from Talian 5.</p>
<p>David</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ziv</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49558</link>
		<dc:creator>ziv</dc:creator>
		<pubDate>Tue, 17 Jan 2012 05:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49558</guid>
		<description>Thank you.
I am still using Tallian ver3 and haven&#039;t upgraded yet because of the so many CSS changes I have made to the theme. 
I am using full size images and prefer the &quot;cost&quot; of the load time for making the site nicer.:-) 
Can you please direct me on how to make a code of adding thumbnails to the category pages where the posts are presented (putting each post&#039;s image thumbnail near the text link). I guess it is very similar to the &quot;Related Posts WordPress SEO Plugin&quot; code where the default (no image is a dog).</description>
		<content:encoded><![CDATA[<p>Thank you.<br />
I am still using Tallian ver3 and haven&#8217;t upgraded yet because of the so many CSS changes I have made to the theme.<br />
I am using full size images and prefer the &#8220;cost&#8221; of the load time for making the site nicer.:-)<br />
Can you please direct me on how to make a code of adding thumbnails to the category pages where the posts are presented (putting each post&#8217;s image thumbnail near the text link). I guess it is very similar to the &#8220;Related Posts WordPress SEO Plugin&#8221; code where the default (no image is a dog).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress SEO Themes</title>
		<link>http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html/comment-page-15#comment-49549</link>
		<dc:creator>WordPress SEO Themes</dc:creator>
		<pubDate>Tue, 17 Jan 2012 00:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.google-adsense-templates.co.uk/wordpress-theme-talian-with-adsense-and-seo-optimisation.html#comment-49549</guid>
		<description>Stallion uses Timthumb for some of the thumbnail images to keep sizes down (Timthumb creates small thumbnails), if you use the Stallion thumbnail option and make sure all posts have Stallion featured images or WordPress featured images all your posts and pages thumbnails will be relatively small in size. If you don&#039;t set these a thumbnail could be a full size image from within a post/page which will slow loading on the home and archive pages. I&#039;m lazy and haven&#039;t set all mine yet :-)

If you&#039;ve been using the Contextual Related Posts plugin from this site I&#039;ve made another version at &lt;a href=&quot;http://www.stallion-theme.com/wordpress-seo-plugins&quot;&gt;WordPress SEO Plugins&lt;/a&gt; (calling it Stallion Related Posts WordPress SEO Plugin) which uses Timthumb built into Stallion for the thumbnails, so this will reduce the load on the images as described above. When I update Talian I&#039;ll add the option into the related posts plugin for Talian as well.

Other than that I use Corel PhaintShop Photo Pro and optimize the sizes best I can without degrading the quality too much, but if you want images on a site it slows things down. Price you have to pay for a nice site I&#039;m afraid :-)

David</description>
		<content:encoded><![CDATA[<p>Stallion uses Timthumb for some of the thumbnail images to keep sizes down (Timthumb creates small thumbnails), if you use the Stallion thumbnail option and make sure all posts have Stallion featured images or WordPress featured images all your posts and pages thumbnails will be relatively small in size. If you don&#8217;t set these a thumbnail could be a full size image from within a post/page which will slow loading on the home and archive pages. I&#8217;m lazy and haven&#8217;t set all mine yet <img src='http://www.google-adsense-templates.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you&#8217;ve been using the Contextual Related Posts plugin from this site I&#8217;ve made another version at <a href="http://www.stallion-theme.com/wordpress-seo-plugins">WordPress SEO Plugins</a> (calling it Stallion Related Posts WordPress SEO Plugin) which uses Timthumb built into Stallion for the thumbnails, so this will reduce the load on the images as described above. When I update Talian I&#8217;ll add the option into the related posts plugin for Talian as well.</p>
<p>Other than that I use Corel PhaintShop Photo Pro and optimize the sizes best I can without degrading the quality too much, but if you want images on a site it slows things down. Price you have to pay for a nice site I&#8217;m afraid <img src='http://www.google-adsense-templates.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>David</p>
]]></content:encoded>
	</item>
</channel>
</rss>

