<?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>Techstroke - Technology Gadgets  Blogging Softwares &#187; Wordpress</title>
	<atom:link href="http://www.techstroke.com/tag/wordpress/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techstroke.com</link>
	<description>Technology News Tips &#38; Tricks Social Media Blogging Wordpress</description>
	<lastBuildDate>Sat, 31 Jul 2010 17:17:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>WordPress Tricks &amp; Hacks : Removing Admin Name In Comment Class To Add More Security</title>
		<link>http://www.techstroke.com/wordpress-tricks-hacks-removing-admin-name-in-comment-class-to-add-more-security.html</link>
		<comments>http://www.techstroke.com/wordpress-tricks-hacks-removing-admin-name-in-comment-class-to-add-more-security.html#comments</comments>
		<pubDate>Mon, 31 May 2010 13:15:33 +0000</pubDate>
		<dc:creator>alok</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>
		<category><![CDATA[Adding More security In wordpress]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[bavotasan]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[code snippet]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[Everyone]]></category>
		<category><![CDATA[hole]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[Name]]></category>
		<category><![CDATA[return classes]]></category>
		<category><![CDATA[Secure Wordpress]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[security hole]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[wordpress hacks and tricks]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/wordpress-tricks-hacks-removing-admin-name-in-comment-class-to-add-more-security.html</guid>
		<description><![CDATA[&#160; It is usually happen when blog admin left a comment on his blog,WordPress use the name in the comment css class. This is useful for styling, but it will also let people know about your admin login name and is no more secure. To avoid and hide this information, you can add this code [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fwordpress-tricks-hacks-removing-admin-name-in-comment-class-to-add-more-security.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fwordpress-tricks-hacks-removing-admin-name-in-comment-class-to-add-more-security.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.techstroke.com/wp-content/uploads/2010/05/image40.png" ><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/05/image_thumb42.png" width="290" height="232" /></a>&#160;</p>
<p>It is usually happen when blog admin left a comment on his blog,WordPress use the name in the comment css class.</p>
<p>This is useful for styling, but it will also let people know about your admin login name and is no more secure. To avoid and hide this information, you can add this code snippet that can quickly remove the offending class from every comment.</p>
<p>Just add this to your functions.php file:</p>
<p>&#160;</p>
<table border="0" cellspacing="0" cellpadding="2" width="500">
<tbody>
<tr>
<td valign="top" width="500">
<blockquote>
<pre>function remove_comment_author_class( $classes ) {
	foreach( $classes as $key =&gt; $class ) {
		if(<font color="#d20000">strstr</font>($class, <font color="#0000ff">&quot;comment-author-&quot;</font>)) {
			<font color="#ff0000">unset</font>( $classes[$key] );
		}
	}
	return $classes;
}
add_filter( <font color="#0000ff">'comment_class' , 'remove_comment_author_class'</font> );</pre>
</blockquote>
</td>
</tr>
</tbody>
</table>
<p>&#160;</p>
<p>Source : <a href="http://bavotasan.com/tutorials/small-security-hole-in-wordpress-comments/"  target="_blank" rel="nofollow">bavotasan</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/wordpress-tricks-hacks-removing-admin-name-in-comment-class-to-add-more-security.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make Redirects (302 to 301) Permanent?</title>
		<link>http://www.techstroke.com/redirects-302-301permanent.html</link>
		<comments>http://www.techstroke.com/redirects-302-301permanent.html#comments</comments>
		<pubDate>Thu, 27 May 2010 06:34:30 +0000</pubDate>
		<dc:creator>saurabh</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[change 302 redirects to 301 redirects]]></category>
		<category><![CDATA[com]]></category>
		<category><![CDATA[custom domains]]></category>
		<category><![CDATA[domain mapping]]></category>
		<category><![CDATA[error resolving]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[how to change 302 redirects to 301 redirects]]></category>
		<category><![CDATA[index]]></category>
		<category><![CDATA[Permanent Redirect]]></category>
		<category><![CDATA[primary domain]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Redirect 302]]></category>
		<category><![CDATA[Redirects 301]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[self hosted wordpress]]></category>
		<category><![CDATA[support documents]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/redirects-302-301permanent.html</guid>
		<description><![CDATA[It is possible to make redirect mode permanent active, by setting example.com as your primary domain, all your visitors who try to access your old example.wordpress.com links automatically get redirected to the new domain. While starting WordPress.com, you have to start with a standard WordPress.com domain name for your blog which looks something like this: [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fredirects-302-301permanent.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fredirects-302-301permanent.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p align="justify">It is possible to make redirect mode permanent active, by setting example.com as your primary domain, all your visitors who try to access your old example.wordpress.com links automatically get redirected to the new domain.</p>
<p align="justify"><b><a href="http://www.techstroke.com/wp-content/uploads/2010/05/clip_image00221.jpg" ><img title="clip_image002" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="125" alt="clip_image002" src="http://www.techstroke.com/wp-content/uploads/2010/05/clip_image002_thumb11.jpg" width="124" border="0" /></a></b></p>
<p> <span id="more-1482"></span>
<p align="justify">While starting WordPress.com, you have to start with a standard WordPress.com domain name for your blog which looks something like this: &#8211; <strong>example.wordpress.com</strong>. There you can find the option of upgrading to a custom mapped domain such as <strong>example.com</strong>.</p>
<p align="justify"><a href="http://www.techstroke.com/wp-content/uploads/2010/05/clip_image00274.jpg" ><img title="clip_image002[7]" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="161" alt="clip_image002[7]" src="http://www.techstroke.com/wp-content/uploads/2010/05/clip_image0027_thumb4.jpg" width="240" border="0" /></a></p>
<p align="justify">The good news is by setting example.com as your primary domain, all your visitors who try to access your old example.wordpress.com links automatically get redirected to the new domain.</p>
<p align="justify">&#160;</p>
<p><strong>But what about search engines and other services that access the old example.wordpress.com links?</strong></p>
<p align="justify">Up until now, WordPress.com would send those services a 302 redirect which would tell them that a link had a new temporary home, and to go index that new link, but to not forget about the original one.</p>
<p align="justify">Today we have changed 302 redirects to 301 redirects. A 301 redirect tells search engines the new link has moved permanently, and they can discard the old links.</p>
<p align="justify"><a href="http://www.techstroke.com/wp-content/uploads/2010/05/clip_image00293.jpg" ><img title="clip_image002[9]" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="170" alt="clip_image002[9]" src="http://www.techstroke.com/wp-content/uploads/2010/05/clip_image0029_thumb3.jpg" width="240" border="0" /></a></p>
<p><strong>Why does this matter?</strong></p>
<p align="justify">This change should help maintain traffic levels from search engines when changing or upgrading to custom domains, and makes things more flexible for you if you ever want to move from WordPress.com to self-hosted WordPress.</p>
<p align="justify">As with anything search engine related, your mileage may vary, and the timing on when search engines such as Google, Bing, and others update their index is not something anyone can predict. We have a short support document explaining some of the complexities involved with search engines that is worth a read if you have any questions.</p>
<p align="justify">&#160;</p>
<p><b>Helpful Links:</b></p>
<p><a href="http://en.wikipedia.org/wiki/HTTP_302"  rel="nofollow">http://en.wikipedia.org/wiki/HTTP_302</a></p>
<p><a href="http://en.wikipedia.org/wiki/HTTP_301"  rel="nofollow">http://en.wikipedia.org/wiki/HTTP_301</a></p>
<p><a href="http://en.support.wordpress.com/domain-mapping/"  rel="nofollow">http://en.support.wordpress.com/domain-mapping/</a></p>
<p><a href="http://get.wp.com/"  rel="nofollow">http://get.wp.com/</a></p>
<p><a href="http://en.support.wordpress.com/search-engines/"  rel="nofollow">http://en.support.wordpress.com/search-engines/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/redirects-302-301permanent.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Split Your WordPress Content Into Two or More Columns</title>
		<link>http://www.techstroke.com/split-your-wordpress-content-into-two-or-more-columns.html</link>
		<comments>http://www.techstroke.com/split-your-wordpress-content-into-two-or-more-columns.html#comments</comments>
		<pubDate>Mon, 08 Feb 2010 05:58:13 +0000</pubDate>
		<dc:creator>binesh</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content themes]]></category>
		<category><![CDATA[php variable]]></category>
		<category><![CDATA[split wordpress content]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theme folder]]></category>
		<category><![CDATA[two columns]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/split-your-wordpress-content-into-two-or-more-columns.html</guid>
		<description><![CDATA[WordPress is a great CMS, but implementing some features within your theme can require a little lateral thinking. The content for your page or post is usually output by the theme code using a single function call: the_content(args); But what if you need to split the content into two or more blocks? That might be [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fsplit-your-wordpress-content-into-two-or-more-columns.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fsplit-your-wordpress-content-into-two-or-more-columns.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.techstroke.com/wp-content/uploads/2010/02/image8.png" ><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/02/image_thumb8.png" width="204" height="204" /></a> </p>
<p>WordPress is a great <acronym>CMS</acronym>, but implementing some features within your theme can require a little lateral thinking. The content for your page or post is usually output by the theme code using a single function call:</p>
</p>
<p><code><font color="#ff0000">the_content(<em>args</em>);</font></code></p>
<p> <span id="more-1061"></span>
<p>But what if you need to split the content into two or more blocks? That might be necessary if your theme requires multiple columns or sections on the page. WordPress provides a <code><font color="#ff0000">get_the_content()</font></code> function to return content as a PHP variable, but how do you determine where the divisions occur? There are a few solutions on the web, but most involve either:</p>
<ol>
<li>Splitting the content at HTML tags such as <code><a href="http://reference.sitepoint.com/html/h2"  rel="nofollow">h2</a></code> headings. Unfortunately, that requires the content author to know a little HTML and it’s not very versatile — you couldn’t allow two headings in one column. </li>
<li>Using a WordPress shortcode. That’s more flexible, but it still puts the onus on the content editor to remember and use the right code. </li>
</ol>
<p>The WordPress <code><font color="#ff0000">&lt;!--more--&gt;</font></code> tag may offer a better solution. It’s normally used to split a long article into two or more pages, but not all themes use that facility and it only works for WordPress posts by default (not pages). Using the <code><font color="#ff0000">&lt;!--more--&gt;</font></code> tag offers several advantages:</p>
<ul>
<li>A “more” toolbar button is available in both the visual and HTML editing pane. </li>
<li>Divisions can be placed anywhere in the content. </li>
<li>It’s easy for non-technical users to understand how the content will be split. </li>
</ul>
<p> <a href="http://www.techstroke.com/wp-content/uploads/2010/02/image9.png" ><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/02/image_thumb9.png" width="555" height="382" /></a>
<p>To split your content, locate your theme folder (wp-content/themes), edit or create a <strong>functions.php</strong> file and add the following function within a<font color="#ff0000"> &lt;?php … ?&gt;</font> block:</p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2010/02/image10.png" ><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/02/image_thumb10.png" width="559" height="255" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/split-your-wordpress-content-into-two-or-more-columns.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Latest Free WordPress Themes Released in Feb till 4 Feb 2010</title>
		<link>http://www.techstroke.com/new-latest-free-wordpress-themes-released-in-feb-till-4-feb-2010.html</link>
		<comments>http://www.techstroke.com/new-latest-free-wordpress-themes-released-in-feb-till-4-feb-2010.html#comments</comments>
		<pubDate>Thu, 04 Feb 2010 08:00:25 +0000</pubDate>
		<dc:creator>binesh</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress themes]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[feb]]></category>
		<category><![CDATA[page preview]]></category>
		<category><![CDATA[poker]]></category>
		<category><![CDATA[Tested]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/new-latest-free-wordpress-themes-released-in-feb-till-4-feb-2010.html</guid>
		<description><![CDATA[CLOUDS LABS-THEME Its is more likely as the Premium Magazine Skins for WP CMS blogs. two columns, XhtmlValid. Features: Tested with WordPress version 2.9.x&#160;&#160;&#160; 2 Columns&#160; Fixed Width Right Sidebar Widget ready 125&#215;125 ads ready Supports Gravatar Threaded Comments Ready Valid XHTML/CSS Options Page PREVIEW&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; DOWNLOAD POKER-REDPRESS-THEME Contain features useful for webmasters ,beneficial for designing [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fnew-latest-free-wordpress-themes-released-in-feb-till-4-feb-2010.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fnew-latest-free-wordpress-themes-released-in-feb-till-4-feb-2010.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3><strong>CLOUDS LABS-THEME</strong></h3>
<p>Its is more likely as the <strong>Premium Magazine Skins</strong> for WP CMS blogs. two columns, <strong>XhtmlValid.</strong></p>
<hr style="width: 542px; height: 4px" size="4" />
<p><strong>Features:</strong></p>
<ul>
<li>Tested with WordPress version 2.9.x&#160;&#160;&#160; </li>
<li>2 Columns&#160; </li>
<li>Fixed Width </li>
<li>Right Sidebar </li>
<li>Widget ready </li>
<li>125&#215;125 ads ready </li>
<li>Supports Gravatar </li>
<li>Threaded Comments Ready </li>
<li>Valid XHTML/CSS </li>
<li>Options Page </li>
<p> <span id="more-1018"></span></ul>
<p><a href="http://www.techstroke.com/wp-content/uploads/2010/02/image2.png" ><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/02/image_thumb2.png" width="467" height="347" /></a></p>
<p><a href="http://cloudslab.techbrainiac.info/"  target="_blank" rel="nofollow">PREVIEW</a>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://www.wpspider.com/download/clouds_lab.zip"  target="_blank" rel="nofollow">DOWNLOAD</a></p>
<h3><strong>POKER-REDPRESS-THEME</strong></h3>
<p>Contain features useful for webmasters ,beneficial for designing online gambling related site</p>
</p>
<hr style="width: 542px; height: 4px" size="4" />
<p><strong>Features:</strong></p>
<ul>
<li>Tested with WordPress version 2.9.x </li>
<li>2 Columns </li>
<li>Fixed Width </li>
<li>Right Sidebar </li>
<li>Widget ready </li>
<li>Adsense ready </li>
<li>125&#215;125 ads ready </li>
<li>Supports Gravatar </li>
<li>Threaded Comments Ready </li>
<li>Valid XHTML/CSS </li>
</ul>
<p><a href="http://www.techstroke.com/wp-content/uploads/2010/02/image3.png" ><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/02/image_thumb3.png" width="471" height="377" /></a></p>
<p><a href="http://test.qualitywordpress.com/?preview_theme=poker-redpress"  target="_blank" rel="nofollow">PREVIEW</a>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://www.wpspider.com/download/poker-redpress.zip"  target="_blank" rel="nofollow">DOWNLOAD</a></p>
<h3><strong>GRUNDGE-FX-THEME</strong></h3>
<p>Basically&#160; Design for the WordPress CMS related sites..</p>
<hr style="width: 542px; height: 4px" size="4" />
<p><strong>Features:</strong></p>
<ul>
<li>Tested with WordPress version 2.9.x </li>
<li>2 Columns </li>
<li>Fixed Width </li>
<li>Right Sidebar </li>
<li>Widget ready </li>
<li>Supports Gravatar </li>
<li>Threaded Comments Ready </li>
<li>Valid XHTML/CSS <a href="http://www.techstroke.com/wp-content/uploads/2010/02/image4.png" ><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2010/02/image_thumb4.png" width="491" height="373" /></a> </li>
</ul>
<p><a href="http://test.qualitywordpress.com/?preview_theme=grundge-fx"  target="_blank" rel="nofollow">PREVIEW</a>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; <a href="http://www.wpspider.com/download/grundge-fx.zip"  target="_blank" rel="nofollow">DOWNLOAD</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/new-latest-free-wordpress-themes-released-in-feb-till-4-feb-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 3 Ways of Showing Recent Posts in WordPress Code Theme or Sidebar</title>
		<link>http://www.techstroke.com/top-3-ways-of-showing-recent-posts-in-wordpress-code-theme-or-sidebar.html</link>
		<comments>http://www.techstroke.com/top-3-ways-of-showing-recent-posts-in-wordpress-code-theme-or-sidebar.html#comments</comments>
		<pubDate>Sun, 29 Nov 2009 08:58:54 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugins]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[query function]]></category>
		<category><![CDATA[query posts]]></category>
		<category><![CDATA[Recent posts]]></category>
		<category><![CDATA[sidebars]]></category>
		<category><![CDATA[Wordpress codex]]></category>
		<category><![CDATA[Wordpress customization help]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/top-3-ways-of-showing-recent-posts-in-wordpress-code-theme-or-sidebar.html</guid>
		<description><![CDATA[Displaying recent posts in your WordPress is a norm nowadays on every other WordPress or Blogger blog, Now you can use any of these codes / methods to get yourself a nice recent posts list for last 10 “X number of posts “ . 1. Recent Posts Using the wp_get_archives function &#60;?php wp_get_archives(&#8216;title_li=&#38;type=postbypost&#38;limit=10&#8242;); ?&#62; &#160; [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Ftop-3-ways-of-showing-recent-posts-in-wordpress-code-theme-or-sidebar.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Ftop-3-ways-of-showing-recent-posts-in-wordpress-code-theme-or-sidebar.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.techstroke.com/wp-content/uploads/2009/11/image5.png" ><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="right" src="http://www.techstroke.com/wp-content/uploads/2009/11/image_thumb3.png" width="129" height="89" /></a> Displaying recent posts in your WordPress is a norm nowadays on every other WordPress or Blogger blog, Now you can use any of these codes / methods to get yourself a nice recent posts list for last 10 “X number of posts “ .</p>
<p> <span id="more-943"></span>
<p><strong>1. Recent Posts Using the wp_get_archives function </strong></p>
<blockquote><p><em>&lt;?php wp_get_archives(&#8216;title_li=&amp;type=postbypost&amp;limit=10&#8242;); ?&gt;</em></p>
<p>&#160;</p>
</blockquote>
<p>This would list recent 10 posts , in their own &lt;li&gt; tags , you can use this after post-meta or the_content () in single.php to list recent posts after every Post , or use it in any of your Sidebars.</p>
<p>&#160;</p>
<p><strong>2. Recent Posts Using the WordPress query function to query the Posts database</strong>&#160;</p>
<blockquote><p><em>&lt;?php query_posts(&#8216;showposts=5&#8242;); ?&gt;       <br />&lt;ul&gt;        <br />&lt;?php while (have_posts()) : the_post(); ?&gt;        <br />&lt;li&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;        <br />&lt;?php endwhile;?&gt;        <br />&lt;/ul&gt;</em></p>
</blockquote>
<p>This piece of code can be used anywhere in your theme , as it is self sufficient and it will display recent 5 posts, change the value of “showposts=5” variable to whatever no. of posts you want</p>
<p><strong>3. Recent Posts widget / Plugins for the novice and beginners</strong></p>
<p>If you are a noob at wordpress and still want to get the recent posts functionality , then try the various plugins available to do the work for you. You&#160; can use any of these ..</p>
<p><a href="http://wordpress.org/extend/plugins/search.php?q=recent+posts"  target="_blank" rel="nofollow">http://wordpress.org/extend/plugins/search.php?q=recent+posts</a></p>
<p>OR Use the Add plugin option in your WordPress Dashboard, and search for recent posts&#160; and you can install the plugin from their directly and easily .</p>
<p>Out of the 3 mentioned above I would recommend using first 2 , as they give you more control but only if you know some PHP and programming , otherwise go for the plugins ( it’s the easy way out ! ).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/top-3-ways-of-showing-recent-posts-in-wordpress-code-theme-or-sidebar.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New WordPress Cheat Sheet and Quick Reference PDF for WP Developers</title>
		<link>http://www.techstroke.com/new-wordpress-cheat-sheet-and-quick-reference-pdf-for-wp-developers.html</link>
		<comments>http://www.techstroke.com/new-wordpress-cheat-sheet-and-quick-reference-pdf-for-wp-developers.html#comments</comments>
		<pubDate>Sat, 12 Sep 2009 13:29:59 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Cognizance]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[cheatsheet]]></category>
		<category><![CDATA[collection]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/new-wordpress-cheat-sheet-and-quick-reference-pdf-for-wp-developers.html</guid>
		<description><![CDATA[WordPress Developers can rejoice even more as this new cheatsheet from Ekin Ertac would definitely ease your memory cells and save you from cramming codes , like various template tags and category based loops etc. click on the image to visit the source page, &#160; Also, speckyboy has collected some over 14 WordPress cheat sheets [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fnew-wordpress-cheat-sheet-and-quick-reference-pdf-for-wp-developers.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fnew-wordpress-cheat-sheet-and-quick-reference-pdf-for-wp-developers.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://ekinertac.com/?p=259"  target="_blank" rel="nofollow"><img style="border-bottom: 0px; border-left: 0px; display: inline; margin-left: 0px; border-top: 0px; margin-right: 0px; border-right: 0px" title="image" border="0" alt="image" align="left" src="http://www.techstroke.com/wp-content/uploads/2009/09/image5.png" width="241" height="46" /></a> WordPress Developers can rejoice even more as this new cheatsheet from Ekin Ertac would definitely ease your memory cells and save you from cramming codes , like various template tags and category based loops etc. click on the image to visit the source page, </p>
<p> <span id="more-881"></span>
<p>&#160;</p>
<p><a href="http://ekinertac.com/?p=259"  target="_blank" rel="nofollow"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://www.techstroke.com/wp-content/uploads/2009/09/image6.png" width="518" height="325" /></a> </p>
<p>Also, <a href="http://speckyboy.com/2009/06/17/14-essential-wordpress-development-and-design-cheat-sheets/"  target="_blank" rel="nofollow">speckyboy</a> has collected some over 14 WordPress cheat sheets so you can visit there too and&#160; grab them all .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/new-wordpress-cheat-sheet-and-quick-reference-pdf-for-wp-developers.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>14 New and Latest WordPress Themes &#124; WordPress Templates for 27 july 2009</title>
		<link>http://www.techstroke.com/14-new-and-latest-wordpress-themes-wordpress-templates-for-27-july-2009.html</link>
		<comments>http://www.techstroke.com/14-new-and-latest-wordpress-themes-wordpress-templates-for-27-july-2009.html#comments</comments>
		<pubDate>Sun, 26 Jul 2009 20:52:11 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress themes]]></category>
		<category><![CDATA[latest]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/14-new-and-latest-wordpress-themes-wordpress-templates-for-27-july-2009.html</guid>
		<description><![CDATA[Here are some latest additions to WordPress theme library, these themes are the new themes submitted to various theme directories and include themes for Fashion, business and design related WP blogs, hope you find the right one for yourself . Fashion Blogger Theme Fashion WordPress theme, Stylish 3 colum fashion blog style theme. Ideal for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2F14-new-and-latest-wordpress-themes-wordpress-templates-for-27-july-2009.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2F14-new-and-latest-wordpress-themes-wordpress-templates-for-27-july-2009.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Here are some latest additions to WordPress theme library, these themes are the new themes submitted to various theme directories and include themes for Fashion, business and design related WP blogs, hope you find the right one for yourself .</p>
<h5 id="_fashion-blogger-them_2" ><a href="http://themes.rock-kitty.net/fashion-blogger/"  rel="nofollow">Fashion Blogger Theme</a></h5>
<p><a href="http://themes.rock-kitty.net/fashion-blogger/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-6" border="0" alt="free-wordpress-themes-6" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes6.jpg" width="304" height="229" /></a> </p>
<p> <span id="more-804"></span>
<p>Fashion WordPress theme, Stylish 3 colum fashion blog style theme. Ideal for fashion gurus’ catwork Queens. Great looking site would suite mulit usage such as designer clothing or celebrity designer products etc. </p>
<p>  <h id="_perfume-%e2%80%93-fr_1" r /><br />
<h5><a href="http://themes.rock-kitty.net/perfume/"  rel="nofollow">Perfume – Freebies Love</a></h5>
<p><a href="http://themes.rock-kitty.net/perfume/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-2" border="0" alt="free-wordpress-themes-2" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes2.jpg" width="304" height="229" /></a>     <br />Perfume and Fragrance blog this theme is a 3 column Free WP theme with an eye catching and ideal color combination of purple, dark pink and white. Excellent for a Perfume or fragrance shop to add as a blog, or for a dedicated perfume blog. with integrated featured image slideshow, ad blocks, tag clouds. </p>
<p>  <h id="_car-vision-magazine_1" r /><br />
<h5><a href="http://themes.rock-kitty.net/car-vision-magazine/"  rel="nofollow">Car Vision Magazine</a></h5>
<p><a href="http://themes.rock-kitty.net/car-vision-magazine/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-3" border="0" alt="free-wordpress-themes-3" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes3.jpg" width="304" height="229" /></a>     <br />A Free WordPress Theme with the color combination of White, Black and light Blue. An ideal theme for Magazines and Cars. With integrated featured post slider, adblocks. </p>
<p>  <h id="_blak-magik_1" r /><br />
<h5><a href="http://wordpressthemesbase.com/detail/972.html"  rel="nofollow">Blak Magik</a></h5>
<p><a href="http://wordpressthemesbase.com/detail/972.html"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-4" border="0" alt="free-wordpress-themes-4" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes4.jpg" width="304" height="229" /></a>     <br />A Free WordPress Theme with cool design, 2 Column, integrated adsense. </p>
<p>  <h id="_business-%e2%80%93-f_1" r /><br />
<h5><a href="http://themes.rock-kitty.net/business/"  rel="nofollow">Business – Free WordPress Theme</a></h5>
<p><a href="http://themes.rock-kitty.net/business/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-5" border="0" alt="free-wordpress-themes-5" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes5.jpg" width="304" height="229" /></a>     <br />Magazine Style WordPress Theme, Business theme for bloggers who mean business, clean white and blue theme for clear easy reading by end users. 3 column, Widget ready and adsense ready theme, Crisp and clean appearance. </p>
<p>  <h id="_vic_1" r /><br />
<h5><a href="http://wordpressthemesbase.com/detail/994.html"  rel="nofollow">Vic</a></h5>
<p><a href="http://wordpressthemesbase.com/detail/994.html"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-1" border="0" alt="free-wordpress-themes-1" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes1.jpg" width="304" height="229" /></a>     <br />Free WordPress theme with Featured post slider integration and ad bloks.</p>
<p>  <h id="_travel-diary_1" r /><br />
<h5><a href="http://themes.rock-kitty.net/travel-diary/"  rel="nofollow">Travel Diary</a></h5>
<p><a href="http://themes.rock-kitty.net/travel-diary/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-7" border="0" alt="free-wordpress-themes-7" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes7.jpg" width="304" height="229" /></a>     <br />Travel Diary, wordpress theme unique 2 column theme, Elegant flash headder, can be easily replaced. ideal for a travel journal or log style wordpress blog. Adsense and advertising banner ready, Footer links must be kept intact. </p>
<p>  <h id="_gridline-lite_1" r /><br />
<h5><a href="http://graphpaperpress.com/2007/12/09/gridline-lite/"  rel="nofollow">Gridline Lite</a></h5>
<p><a href="http://graphpaperpress.com/2007/12/09/gridline-lite/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-8" border="0" alt="free-wordpress-themes-8" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes8.jpg" width="304" height="229" /></a>     <br />Gridline Lite is a free minimalist theme for WordPress 2.3 and up with full sidebar and bottombar widget support that utilizes a CSS framework to help streamline development and customization. Gridline pulls in the most recent post, with five recently posted stories listed in offset backgrounds below to keep your readers attention. </p>
<p>  <h id="_magtel_1" r /><br />
<h5><a href="http://topwpthemes.com/magtel/"  rel="nofollow">MagTel</a></h5>
<p><a href="http://topwpthemes.com/magtel/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-9" border="0" alt="free-wordpress-themes-9" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes9.jpg" width="304" height="229" /></a>     <br />MagTel is a free Magazine Style theme for WordPress with Ajax/Widgets, Content Slider. </p>
<p>  <h id="_wordpress-theme-%e2%_1" r /><br />
<h5><a href="http://www.blogohblog.com/wordpress-theme-excellence/"  rel="nofollow">WordPress Theme – Excellence</a></h5>
<p><a href="http://www.blogohblog.com/wordpress-theme-excellence/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-10" border="0" alt="free-wordpress-themes-10" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes10.jpg" width="304" height="229" /></a>     <br />This is a green-colored theme that comes with validated CSS/XHTML code, 125×125 banner space, Sidebar Tabs, Widgetized sidebars and a cute navigation menu. The theme is free of cost and comes under a Creative Commons License (that allows you to make changes and use this theme for personal use, without removing the footer copyright link). </p>
<p>  <h id="_wordpress-theme-%e2%_2" r /><br />
<h5><a href="http://www.blogohblog.com/wordpress-theme-digital-statement/"  rel="nofollow">WordPress Theme – Digital Statement</a></h5>
<p><a href="http://www.blogohblog.com/wordpress-theme-digital-statement/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-11" border="0" alt="free-wordpress-themes-11" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes11.jpg" width="304" height="229" /></a>     <br />Another free WordPress theme from Blog Oh! Blog called – “Digital Statement”. This can also be called as Version 2.0 of the Statement theme because it takes all the code and converts it into a mode<br />
rn, more visually appealing, and with better functionality. </p>
<p>  <h id="_desk_1" r /><br />
<h5><a href="http://themes.rock-kitty.net/desk/"  rel="nofollow">Desk</a></h5>
<p><a href="http://themes.rock-kitty.net/desk/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-12" border="0" alt="free-wordpress-themes-12" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes12.jpg" width="304" height="229" /></a>     <br />This tech theme is compatible with WordPress 2.7, ready for threaded comments come with WP 2.7, and tested on various major web browsers. Besides the integration of widely used function PageNavi, we add a brand new funtion to this theme – Quotable Commentary! With this funtion you can select any part of the article, quote it and reply, by just one click! Haven\’t got what we are talking about? Try this out through the demo now. </p>
<p>  <h id="_e-channel_1" r /><br />
<h5><a href="http://topwpthemes.com/e-channel/"  rel="nofollow">e-channel</a></h5>
<p><a href="http://topwpthemes.com/e-channel/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-13" border="0" alt="free-wordpress-themes-13" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes13.jpg" width="304" height="229" /></a>     <br />Free Magazine Style Wordpres theme with Featured Content Glider, Ajax/Widgets, Ad blocks. </p>
<p>  <h id="_imag_1" r /><br />
<h5><a href="http://topwpthemes.com/imag/"  rel="nofollow">iMag</a></h5>
<p><a href="http://topwpthemes.com/imag/"  rel="nofollow"><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-14" border="0" alt="free-wordpress-themes-14" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes14.jpg" width="304" height="229" /></a>     <br />iMag is a Free Magazine Style Wordpres theme with Featured Content Glider, Ajax/Widgets, Ad blocks. </p>
<p>  <h id="_orizine_1" r /><br />
<h5><a href="http://topwpthemes.com/orizine/"  rel="nofollow">OriZine</a></h5>
<p><a href="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes15.jpg" ><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="free-wordpress-themes-15" border="0" alt="free-wordpress-themes-15" src="http://www.techstroke.com/wp-content/uploads/2009/07/freewordpressthemes15_thumb.jpg" width="308" height="233" /></a>     <br />OriZine is another Free Magazine Style WordPress theme with Featured Content Glider, Ajax/Widgets, Ad blocks. </p>
<p>These themes include grunge, designer and even professional looking themes, hope you find what you were searching for , will be adding more theme collections soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/14-new-and-latest-wordpress-themes-wordpress-templates-for-27-july-2009.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Blog Sidebar Drops Down Problem &#8211; Solution</title>
		<link>http://www.techstroke.com/wordpress-blog-sidebar-drops-down-problem-solution.html</link>
		<comments>http://www.techstroke.com/wordpress-blog-sidebar-drops-down-problem-solution.html#comments</comments>
		<pubDate>Thu, 12 Feb 2009 20:18:06 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Sidebar]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/wordpress-blog-sidebar-drops-down-problem-solution.html</guid>
		<description><![CDATA[WordPress themes are for sure a good delight for eyes , but they look equally odd when some components change their position even though you did not touched any theme file, well the same case happened with me actually it was the case with one of my blog where on the index page the right [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fwordpress-blog-sidebar-drops-down-problem-solution.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fwordpress-blog-sidebar-drops-down-problem-solution.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.techstroke.com/wp-content/uploads/2009/02/image1.png"  rel="nofollow"><img src="http://www.techstroke.com/wp-content/uploads/2009/02/image-thumb1.png" border="0" alt="image" width="98" height="98" align="left" /></a></p>
<p>WordPress themes are for sure a good delight for eyes , but they look equally odd when some components change their position even though you did not touched any theme file, well the same case happened with me actually it was the case with one of my blog where on the index page the right sidebar would drop down, while on the single post page it was all right Now that made me go mad ,as i checked through all my CSS and template files and every DIV tag was closed sidebar was included at proper place and so on, but there was no solution the sidebar was still DOWN.</p>
<p>I still cant believe that this problem had a very simple solution , just go to your WordPress Dashboard then to Settings-&gt;Writing-&gt; and select the checkbox that says &#8220;WordPress should correct invalidly nested XHTML automatically&#8221; as shown in the figure below ,</p>
<p><span id="more-536"></span></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2009/02/image2.png"  rel="nofollow"><img src="http://www.techstroke.com/wp-content/uploads/2009/02/image-thumb2.png" border="0" alt="image" width="541" height="200" /></a></p>
<p>Do this and your problem will be solved Ok, happy now !!</p>
<p>Now, the technical side of this solution is that due to some plugins  or auto formatted copy paste content etc. our Post HTML contains somewhere a closing div tag like &lt;/div&gt; without a matching opening DIV tag, what this does is that it prematurely closes the content Div and so sidebar falls down.</p>
<p>Also, Sidebar drops sometimes due to extra width of the content ID or class, so check your stylesheet as to if the width of content column +width of sidebar is less than the tootal width of containing column ie. the wrapper or the body selector.</p>
<p>Anyways , hope that helped</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/wordpress-blog-sidebar-drops-down-problem-solution.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Post and Control your WordPress Blog from your Symbian Mobile Phone</title>
		<link>http://www.techstroke.com/post-and-control-your-wordpress-blog-from-your-symbian-mobile-phone.html</link>
		<comments>http://www.techstroke.com/post-and-control-your-wordpress-blog-from-your-symbian-mobile-phone.html#comments</comments>
		<pubDate>Tue, 30 Dec 2008 11:10:30 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[symbian]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/post-and-control-your-wordpress-blog-from-your-symbian-mobile-phone.html</guid>
		<description><![CDATA[WordMobi is a Symbian series 60 mobile application which aims at providing all the features of wordpress on your mobile phone. WordMobi is actually a client/remote administration mechanism&#160; for worpress, written in python language for s60. WordMobi helps you in your daily activities related to managing your blog. You can perform all the operation like [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fpost-and-control-your-wordpress-blog-from-your-symbian-mobile-phone.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fpost-and-control-your-wordpress-blog-from-your-symbian-mobile-phone.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>WordMobi is a Symbian series 60 mobile application which aims at providing all the features of wordpress on your mobile phone.</p>
<p>WordMobi is actually a client/remote administration mechanism&#160; for worpress, written in python language for s60.</p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/12/image13.png" ><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="335" alt="image" src="http://www.techstroke.com/wp-content/uploads/2008/12/image-thumb4.png" width="270" border="0" /></a> </p>
<p>WordMobi helps you in your daily activities related to managing your blog. You can perform all the operation like posting, approve comment, post delete, comments visualization right from your mobile phone .</p>
<p> <span id="more-519"></span>
<p>&#160;</p>
<p><strong></strong></p>
<p><strong>Features of WordMobi:</strong></p>
<p>1. With WordMobi you can set the number of recent posts to be displayed and can also set the location of that list on the main screen of your blog.   <br />2. You can also write new posts, edit the existing ones and can also add images to the posts. You can save them as draft or you can publish them right away.    <br />3. It also gives you the post preview before publish option with which you can view how the post will actually look after it will be published.    <br />4. The best part is that while publishing a post, you may not like the images available on net and would like to add different images. You can do that by using the camera of your mobile phone to add the images to the post.</p>
<p>There are also some bugs and issues reported which include Problem with comments updating, you cannot add categories in new post, lack of image retransmission options which means that if you are stuck with the image you cannot transfer it again and the last reported error is that if you hang up in a post then there is no option other than exiting the task and starting it all over again.</p>
<p><strong><a href="http://www.symbian-freeware.com/get-wordmobi.html"  rel="nofollow">Download WordMobi </a></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/post-and-control-your-wordpress-blog-from-your-symbian-mobile-phone.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>53 &#8211; Latest Oct 08 WordPress Magazine Themes &#8211; Massive Collection</title>
		<link>http://www.techstroke.com/59-latest-oct-08-wordpress-magazine-themes-massive-collection.html</link>
		<comments>http://www.techstroke.com/59-latest-oct-08-wordpress-magazine-themes-massive-collection.html#comments</comments>
		<pubDate>Sat, 04 Oct 2008 21:16:23 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress themes]]></category>
		<category><![CDATA[magazine style]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[Wordpress magazine theme]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/59-latest-oct-08-wordpress-magazine-themes-massive-collection.html</guid>
		<description><![CDATA[Here is a massive collection of WordPress themes , 53&#160; of them ( to be precise)and all of them have been released&#160; in the previous 1-3 months , so these are the fresh free wordpress magazine themes available, this collection also has some old WP magazine themes but they are there because they are very [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2F59-latest-oct-08-wordpress-magazine-themes-massive-collection.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2F59-latest-oct-08-wordpress-magazine-themes-massive-collection.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p>Here is a massive collection of WordPress themes , 53&#160; of them ( to be precise)and all of them have been released&#160; in the previous 1-3 months , so these are the fresh free wordpress magazine themes available, this collection also has some old WP magazine themes but they are there because they are very good and I do not want to orphan you guys when it comes to choice , </p>
<p>Here you can decide which WordPress magazine theme&#160; suits your style and content , but if you would like to take my advice regarding magazine themes then i will ask you to go for magazine themes that </p>
<p>&quot; showcase maximum content on the front page&quot; </p>
<p>I think such themes are ideal , like content boxes on main page should&#160; have recent posts in their category , A popular posts/news section , this way you are sure to keep visitor on your website and maximize your chances of earnings or getting some extra feed subscribers .</p>
<p>Now just scan this list , and do leave a comment about your favorite theme that you liked and why ?</p>
<h5 id="_1-blue-magazine_2" >1. Blue Magazine</h5>
<p><a href="http://cssthemesclub.com/bluemagazine.zip"  rel="nofollow">Download</a> | <a href="http://cssthemesclub.com/bluemagazine/"  rel="nofollow">Demo</a></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-22524110.jpg" ><img title="Blue Magazine free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="310" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-22524110-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_2-f8-lite_2" >2. f8 lite</h5>
<p><a href="http://graphpaperpress.com/2008/06/02/f8-lite-portfolio-theme-for-wordpress/"  rel="nofollow">Source</a> | <a href="http://graphpaperpress.com/demo/f8/index.php?wptheme=f8%20lite"  rel="nofollow">Demo</a></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-11035016.jpg" ><img title="f8 lite free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="387" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-11035016-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_3-boldlines-theme_2" >3. BoldLines Theme</h5>
<p><strong><a href="http://freethemelayouts.com/showcase/boldlines-theme/"  rel="nofollow">Source</a> | <a href="http://freethemelayouts.com/blog/index.php?wptheme=boldlines"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0059099.jpg" ><img title="BoldLines free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="261" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0059099-thumb.jpg" width="504" border="0" /></a></p>
<p> <span id="more-431"></span><br />
<h5 id="_4-redd-theme_1" >4. Redd Theme</h5>
<p><strong><a href="http://freethemelayouts.com/showcase/redd-theme/"  rel="nofollow">Source</a> | <a href="http://freethemelayouts.com/blog/index.php?wptheme=reddtheme"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0057029.jpg" ><img title="Redd free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="302" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0057029-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_5-bt-extended_1" >5. BT Extended</h5>
<p><strong><a href="http://3oneseven.com/18/blogging-times-version2-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://wp.3oneseven.com/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0054329.jpg" ><img title="BT Extended free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0054329-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_6-meg4_1" >6. Meg4</h5>
<p><strong><a href="http://bloggingzone.info/meg4.zip"  rel="nofollow">Download</a> | <a href="http://test.bloggingzone.info/?preview_theme=meg4"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/meg49.jpg" ><img title="Meg4 free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="596" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/meg49-thumb.jpg" width="466" border="0" /></a></p>
<h5 id="_7-magus_1" >7. Magus</h5>
<p><strong><a href="http://wpsite.net/2008/magus-red-version-of-magazine-style-mimbo-theme/"  rel="nofollow">Source</a> | </strong>Demo</p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/magus9.jpg" ><img title="Magus free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="295" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/magus9-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_8-zinmag-futura_1" >8. ZinMag futura</h5>
<p><strong><a href="http://web2feel.com/2008/09/08/zinmag-futura/"  rel="nofollow">Source</a> | <a href="http://web2feel.com/futura"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/web2feel-com-futura9.jpg" ><img title="ZinMag futura free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="380" alt="web2feel_com_futura[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/web2feel-com-futura9-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_9-acosminmag_1" >9. AcosminMAG</h5>
<p><strong><a href="http://www.acosmin.com/acosminmag-new-wordpress-theme-ready-for-download-magazine-style-theme/"  rel="nofollow">Source</a> | <a href="http://www.acosmin.com/test/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/www-acosmin-com-test9.jpg" ><img title="AcosminMAG free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="353" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/www-acosmin-com-test9-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_10-madmagazine_1" >10. MadMagazine</h5>
<p><strong><a href="http://freethemelayouts.com/showcase/personal-wordpress-themes/madmagazine-theme/"  rel="nofollow">Source</a> | <a href="http://freethemelayouts.com/blog/index.php?wptheme=Mad+Magazine"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0037449.jpg" ><img title="MadMagazine free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="278" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-03-0037449-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_11-reach-the-blues_1" >11. Reach The Blues</h5>
<p><strong><a href="http://freethemelayouts.com/showcase/personal-wordpress-themes/reach-the-blues-theme/"  rel="nofollow">Source</a> | <a href="http://freethemelayouts.com/blog/index.php?wptheme=Reach+the+Blues"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/freethemelayouts-com-blog9.jpg" ><img title="Reach The Blues free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="395" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/freethemelayouts-com-blog9-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_12-adultwp-dating-th_1" >12. AdultWP &#8211; Dating Theme</h5>
<p><strong><a href="http://www.nattywp.com/view-theme.php?theme_id=183&amp;theme_name=Ad<br />
ultWP-DatingTheme">Source</a> | <a href="http://www.nattywp.com/test.php?theme_id=183"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/awp-dating9.jpg" ><img title="AdultWP - Dating Theme free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="596" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/awp-dating9-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_13-miniml_1" >13. Miniml</h5>
<p><strong><a href="http://www.themelab.com/2008/08/14/miniml-free-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://demo.themelab.com/index.php?wptheme=Miniml"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/demo-themelab-com9.jpg" ><img title="Miniml free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="596" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/demo-themelab-com9-thumb.jpg" width="425" border="0" /></a></p>
<h5 id="_14-wp-pixels_1" >14. WP Pixels</h5>
<p><strong><a href="http://www.wp-magazine.se/free-theme-wp-pixels/"  rel="nofollow">Source</a> | <a href="http://pixels.wpstudio.se/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/pixels-wpstudio-se9.jpg" ><img title="WP Pixels free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="557" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/pixels-wpstudio-se9-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_15-zinmag-redux_1" >15. Zinmag Redux</h5>
<p><strong><a href="http://topwpthemes.com/zinmag/"  rel="nofollow">Source</a> | <a href="http://web2feel.com/demo5/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/zinmag9.jpg" ><img title="Zinmag Redux free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="596" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/zinmag9-thumb.jpg" width="395" border="0" /></a></p>
<h5 id="_16-topics_1" >16. Topics</h5>
<p><strong><a href="http://www.problogthemes.com/topics.html"  rel="nofollow">Source</a> | <a href="http://www.problogthemes.com/demotopics/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2257429.jpg" ><img title="Topics free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="272" alt="Wordpress Magazine Theme" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2257429-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_17-global-magazine-s_1" >17. Global Magazine Style</h5>
<p><strong><a href="http://bloggingzone.info/globalmag.zip"  rel="nofollow">Download</a> | <a href="http://test.bloggingzone.info/?preview_theme=meg3"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2253459.jpg" ><img title="Global Magazine Style free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="263" alt="2008-10-02_225345[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2253459-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_18-guzel-magazine_1" >18. Guzel Magazine</h5>
<p><strong><a href="http://www.gabfire.com/guzel-magazine-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://www.customthemedesign.com/guzel"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2250489.jpg" ><img title="Guzel Magazine free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="287" alt="2008-10-02_225048[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2250489-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_19-dark-magazine_1" >19. Dark Magazine</h5>
<p><strong><a href="http://cssthemesclub.com/wp2.zip"  rel="nofollow">Download</a> | <a href="http://cssthemesclub.com/wp2"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2248129.jpg" ><img title="Dark Magazine free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="262" alt="2008-10-02_224812[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2248129-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_20-simple-magazine_1" >20. Simple Magazine</h5>
<p><strong><a href="http://cssthemesclub.com/wp.zip"  rel="nofollow">Download</a> | <a href="http://cssthemesclub.com/wp"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2244109.jpg" ><img title="Simple Magazine free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="306" alt="2008-10-02_224410[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2244109-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_21-infinity_1" >21. Infinity</h5>
<p><strong><a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://88.198.60.17/images/infinity-wordpress-theme/preview-large.png"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2240359.jpg" ><img title="Infinity free WordPress Magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="301" alt="2008-10-02_224035[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2240359-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_22-indianmuslims_1" >22. IndianMuslims</h5>
<p><strong><a href="http://www.jauhari.net/themes/indianmuslims"  rel="nofollow">Source</a> | <a href="http://demo.jauhari.net/?wptheme=IndianMuslims"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2235429.jpg" ><img title="IndianMuslims free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="276" alt="2008-10-02_223542[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/2008-10-02-2235429-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_23-promag_1" >23. ProMag</h5>
<p><strong><a href="http://web2feel.com/2008/08/04/free-wordpress-theme-promag-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://test.bloggingzone.info/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-39-oct-02-1312-580x3509.jpg" ><img title="ProMag free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="306" alt="screenhunter_39-oct-02-1312-580x350[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-39-oct-02-1312-580x3509-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_24-newsweek_1" >24. Newsweek</h5>
<p><strong><a href="http://premiumthemes.net/freethemes/newsweek.html"  rel="nofollow">Source</a> | <a href="http://demo.premiumthemes.net/?preview_theme=newsweek"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-38-oct-02-1309-580x3499.jpg" ><img title="Newsweek free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="305" alt="screenhunter_38-oct-02-1309-580x349[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-38-oct-02-1309-580x3499-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_25-hamasaki_1" >25. Hamasaki</h5>
<p><strong><a href="http://www.jauhari.net/themes/hamasaki"  rel="nofollow">Source</a> | <a href="http://de<br />
mo.jauhari.net/?wptheme=Hamasaki">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-37-oct-02-1307-580x35012.jpg" ><img title="Hamasaki free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="306" alt="screenhunter_37-oct-02-1307-580x350[12]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-37-oct-02-1307-580x35012-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_26-small-magazine_1" >26. Small magazine</h5>
<p><strong><a href="http://www.gabfire.com/small-magazine-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://sm.gabfire.com/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-36-oct-02-1305-580x3459.jpg" ><img title="Small magazine free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="301" alt="screenhunter_36-oct-02-1305-580x345[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-36-oct-02-1305-580x3459-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_27-zinmag_1" >27. Zinmag</h5>
<p><strong><a href="http://web2feel.com/2008/06/13/zinmag/"  rel="nofollow">Source</a> | <a href="http://web2feel.com/demosite1/?wptheme=zinmag"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-35-oct-02-1303-580x3479.jpg" ><img title="Zinmag free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="303" alt="screenhunter_35-oct-02-1303-580x347[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-35-oct-02-1303-580x3479-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_28-rusty-mag_1" >28. Rusty Mag</h5>
<p><strong><a href="http://www.freewordpressthemes.com/themeinfo.php?id=3059"  rel="nofollow">Source</a> | <a href="http://www.freewordpressthemes.com/wordpress/index.php?wptheme=RustyMag"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-34-oct-02-1301-580x3489.jpg" ><img title="Rusty Mag free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="screenhunter_34-oct-02-1301-580x348[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-34-oct-02-1301-580x3489-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_29-grunge_1" >29. Grunge</h5>
<p><strong><a href="http://simplymoneyonline.info/downloads/Grunge.zip"  rel="nofollow">Download</a> | <a href="http://simplymoneyonline.info/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-33-oct-02-1259-580x3179.jpg" ><img title="Grunge free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="277" alt="screenhunter_33-oct-02-1259-580x317[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-33-oct-02-1259-580x3179-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_30-nerdsmagazine-10_1" >30. NerdsMagazine 1.0</h5>
<p><strong><a href="http://www.nerdown.com/nerdsmagazine-free-wordpress-theme/"  rel="nofollow">Source</a> | </strong>Demo</p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-32-oct-02-1257-580x3649.jpg" ><img title="NerdsMagazine 1.0 free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="318" alt="screenhunter_32-oct-02-1257-580x364[9]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-32-oct-02-1257-580x3649-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_31-wp-newsmag_1" >31. WP NewsMag</h5>
<p><strong><a href="http://www.wp-magazine.se/free-wordpress-theme-wp-newsmag/"  rel="nofollow">Source</a> | <a href="http://wpstart.start-1.info/the-ultimate-list-of-free-wp-magazine-themes/WP%20NewsMag%20free%20WordPress%20magazine%20theme"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/wp-magazine-se8.jpg" ><img title="WP NewsMag free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="374" alt="wp-magazine_se[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/wp-magazine-se8-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_32-purple-fever_1" >32. Purple Fever</h5>
<p><strong><a href="http://www.wordpressthemesmarket.com/premium-themes/purple-fever-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://purplefevertheme.com/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-31-oct-02-1253-580x3388.jpg" ><img title="Purple Fever free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="295" alt="screenhunter_31-oct-02-1253-580x338[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-31-oct-02-1253-580x3388-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_33-travel-magazine_1" >33. Travel Magazine</h5>
<p><strong><a href="http://www.templatepanic.com/article/travel-magazine-style-wordpress-theme"  rel="nofollow">Source</a> | <a href="http://demo.templatepanic.com/index.php?wptheme=Travel+Magazine+Style"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-30-oct-02-1251-580x3478.jpg" ><img title="Travel Magazine free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="303" alt="screenhunter_30-oct-02-1251-580x347[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-30-oct-02-1251-580x3478-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_34-wp-gold_1" >34. WP Gold</h5>
<p><strong><a href="http://www.wp-magazine.se/free-wordpress-theme-wp-gold/"  rel="nofollow">Source</a> | <a href="http://demo.wp-magazine.se/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-29-oct-02-1249-580x3518.jpg" ><img title="WP Gold free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_29-oct-02-1249-580x351[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-29-oct-02-1249-580x3518-thumb.jpg" width="504" border="0" /></a>35.<strong> 35.</strong> WP Silver</p>
<p><strong><a href="http://www.wp-magazine.se/free-wordpress-theme-wp-silver/"  rel="nofollow">Source</a> | <a href="http://silver.wp-magazine.se/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-28-oct-02-1247-580x3518.jpg" ><img title="WP Silver free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_28-oct-02-1247-580x351[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-28-oct-02-1247-580x3518-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_36-wynton-magazine_1" >36. Wynton Magazine</h5>
<p><strong><a href="http://www.der-prinz.com/2008/04/21/new-magazine-style-theme-for-wordpress-wyntonmagazine/"  rel="nofollow">Source</a> | <a href="http://wp-themes.der-prinz.com/wyntonmagazine/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-27-oct-02-1245-580x3488.jpg" ><img title="Wynton Magazine free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="screenhunter_27-oct-02-1245-580x348[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-27-oct-02-1245-580x3488-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_37-openbook_1" >37.&#160; OpenBook</h5>
<p><strong><a href="http://hackwordpress.com/free-magazine-wordpress-theme-introducing-openbook/"  rel="nofollow">Source</a> | <a<br />
href="http://www.lyxia.org/">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-26-oct-02-1243-580x3488.jpg" ><img title="OpenBook free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="screenhunter_26-oct-02-1243-580x348[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-26-oct-02-1243-580x3488-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_38-magadine-12_1" >38. Magadine 1.2</h5>
<p><strong><a href="http://web.ygoy.com/2008/05/12/magadine-12-magazine-style-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://www.ygoy.com/demo/index.php?wptheme=Magadine+1.2"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-25-oct-02-1241-580x3528.jpg" ><img title="Magadine 1.2 free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_25-oct-02-1241-580x352[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-25-oct-02-1241-580x3528-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_39-overstand_1" >39. Overstand</h5>
<p><strong><a href="http://www.fakeblog.de/2007/10/25/overstand-theme-fur-wordpress-23/#english"  rel="nofollow">Source</a> | <a href="http://www.fakeblog.de/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-24-oct-02-1239-580x3488.jpg" ><img title="Overstand free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="screenhunter_24-oct-02-1239-580x348[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-24-oct-02-1239-580x3488-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_40-futurosity-vero_1" >40. Futurosity Vero</h5>
<p><strong><a href="http://www.futurosity.com/wordpress-theme-futurosity-vero"  rel="nofollow">Source</a> | <a href="http://www.futurosity.com/wpthemes/index.php?wptheme=Futurosity+Vero"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-23-oct-02-1237-580x4208.jpg" ><img title="Futurosity Vero free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="366" alt="screenhunter_23-oct-02-1237-580x420[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-23-oct-02-1237-580x4208-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_41-rebel-magazine_1" >41. Rebel Magazine</h5>
<p><strong><a href="http://www.wpthemedesigner.com/2008/05/07/rebel-magazine-theme/"  rel="nofollow">Source</a> | <a href="http://ythv.info/rebel/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-22-oct-02-1235-580x3508.jpg" ><img title="Rebel Magazine free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="306" alt="screenhunter_22-oct-02-1235-580x350[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-22-oct-02-1235-580x3508-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_42-arthemia_1" >42. Arthemia</h5>
<p><strong><a href="http://michaelhutagalung.com/2008/05/arthemia-magazine-blog-wordpress-theme-released/"  rel="nofollow">Source</a> | <a href="http://www.michaeljubel.com/arthemia/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-21-oct-02-1233-580x3498.jpg" ><img title="Arthemia free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="305" alt="screenhunter_21-oct-02-1233-580x349[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-21-oct-02-1233-580x3498-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_43-linoluna_1" >43. Linoluna</h5>
<p><strong><a href="http://michaelhutagalung.com/2007/12/linoluna-magazine-style-theme-for-wordpress/"  rel="nofollow">Source</a> | </strong>Demo</p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-20-oct-02-1230-580x3448.jpg" ><img title="Linoluna free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="301" alt="screenhunter_20-oct-02-1230-580x344[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-20-oct-02-1230-580x3448-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_44-thunderbolt_1" >44. Thunderbolt</h5>
<p><strong><a href="http://hellyeahdude.com/articles/free-wordpress-theme-thunderbolt/"  rel="nofollow">Source</a> | <a href="http://demo.hellyeahdude.com/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-19-oct-02-1227-580x3388.jpg" ><img title="Thunderbolt free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="295" alt="screenhunter_19-oct-02-1227-580x338[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-19-oct-02-1227-580x3388-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_45-shiva_1" >45. Shiva</h5>
<p><strong><a href="http://www.themespinner.com/free-wordpress-themes.php"  rel="nofollow">Source</a> | <a href="http://www.themespinner.com/demo/?wptheme=Shiva-Free"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-18-oct-02-1224-580x3438.jpg" ><img title="Shiva free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="300" alt="screenhunter_18-oct-02-1224-580x343[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-18-oct-02-1224-580x3438-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_46-maya_1" >46. Maya</h5>
<p><strong><a href="http://www.themespinner.com/free-wordpress-themes.php"  rel="nofollow">Source</a> | <a href="http://www.themespinner.com/demo/?wptheme=Maya-Free"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-16-oct-02-1222-580x3528.jpg" ><img title="Maya free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_16-oct-02-1222-580x352[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-16-oct-02-1222-580x3528-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_47-indomagz_1" >47. Indomagz</h5>
<p><strong><a href="http://www.magznetwork.com/wordpress-themes/indomagz-free-premium-wordpress-theme.html"  rel="nofollow">Source</a> | <a href="http://www.magznetwork.com/demo/"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-15-oct-02-1220-580x3518.jpg" ><img title="Indomagz free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_15-oct-02-1220-580x351[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-15-oct-02-1220-580x3518-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_48-smooth-news_1" >48. Smooth News</h5>
<p><strong><a href="http://themes.blogflux.com/theme/2644.html"  rel="nofollow">Source</a> | <a href="http://themes.blogflux.com/demo.php?id=2644"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-14-oct-02-1217-580x3518.jpg" ><img title="Smooth News free WordPress theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_14-oct-02-1217-580x351[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-14-oct-02-1217-580x3518-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_49-the-studio_1" >49. The Studio</h5>
<p><strong><a href="http://www.headsetoptions.org/2008/02/23/free-magazine-style-theme-the-studio/"  rel="nofollow">Source</a> | <a hr<br />
ef="http://www.headsetoptions.org/play/?wptheme=thestudio">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-13-oct-02-1215-580x3498.jpg" ><img title="The Studio free magazine WordPress theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="305" alt="screenhunter_13-oct-02-1215-580x349[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-13-oct-02-1215-580x3498-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_50-the-box_1" >50. The Box</h5>
<p><strong><a href="http://www.headsetoptions.org/2008/02/13/free-magazine-style-wordpress-theme-the-box/"  rel="nofollow">Source</a> | <a href="http://www.headsetoptions.org/play/?wptheme=thebox"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-12-oct-02-1212-580x3508.jpg" ><img title="The Box free magazine WordPress theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="306" alt="screenhunter_12-oct-02-1212-580x350[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-12-oct-02-1212-580x3508-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_51-wordpress-magazin_1" >51. WordPress Magazine Theme</h5>
<p><strong><a href="http://www.gabfire.com/wordpress-magazine-theme-released/"  rel="nofollow">Source</a> | <a href="http://wp-magazine.gabfire.com/index.php?wptheme=Wp-MagazineTheme"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-11-oct-02-1210-580x3488.jpg" ><img title="WordPress Magazine Theme " style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="screenhunter_11-oct-02-1210-580x348[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-11-oct-02-1210-580x3488-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_52-futurosity-aperio_1" >52. Futurosity Aperio Prototype</h5>
<p><strong><a href="http://www.futurosity.com/wordpress-theme-futurosity-aperio-prototype"  rel="nofollow">Source</a> | <a href="http://www.futurosity.com/wpthemes/index.php?wptheme=Futurosity+Aperio+Prototype"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-10-oct-02-1208-580x3528.jpg" ><img title="Futurosity Aperio Prototype free magazine/porfolio WordPress theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_10-oct-02-1208-580x352[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-10-oct-02-1208-580x3528-thumb.jpg" width="504" border="0" /></a></p>
<h5 id="_53-magadine_1" >53. Magadine</h5>
<p><strong><a href="http://web.ygoy.com/2008/03/04/magadine-magazine-wordpress-theme/"  rel="nofollow">Source</a> | <a href="http://www.ygoy.com/demo/index.php?wptheme=Magadine"  rel="nofollow">Demo</a></strong></p>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-09-oct-02-1205-580x3518.jpg" ><img title="Magadine free WordPress magazine theme" style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="307" alt="screenhunter_09-oct-02-1205-580x351[8]" src="http://www.techstroke.com/wp-content/uploads/2008/10/screenhunter-09-oct-02-1205-580x3518-thumb.jpg" width="504" border="0" /></a></p>
<p>would love to see your comments regarding your favorite theme out of these and pros and cons of various themes , so that other readers can have a better choice for themselves&#160; .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/59-latest-oct-08-wordpress-magazine-themes-massive-collection.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
