<?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>Corpocrat Blog &#187; Wordpress</title>
	<atom:link href="http://corpocrat.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://corpocrat.com</link>
	<description>Daily Blog from Internet Entrepreneur/Webmaster</description>
	<lastBuildDate>Fri, 03 Feb 2012 10:57:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>WordPress &#8211; How to create a login protected page?</title>
		<link>http://corpocrat.com/2011/10/28/wordpress-how-to-create-a-login-protected-page/</link>
		<comments>http://corpocrat.com/2011/10/28/wordpress-how-to-create-a-login-protected-page/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 15:47:19 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3448</guid>
		<description><![CDATA[<p>In this tutorial, i will how you how easy it is to login protect a page and then force users to login, to view the page.</p>
<p>1. Create a php file named &#8220;login-protect.php&#8221; in your current theme folder.</p>
<p>2. Place the following code in this file</p>


&#60;?php /*   Template Name:  Login Protect ...]]></description>
			<content:encoded><![CDATA[<p>In this tutorial, i will how you how easy it is to login protect a page and then force users to login, to view the page.</p>
<p>1. Create a php file named &#8220;login-protect.php&#8221; in your current theme folder.</p>
<p>2. Place the following code in this file</p>
<pre class="brush: php; title: CODE; notranslate">

&lt;?php /*   Template Name:  Login Protect Template */ ?&gt;
&lt;?php get_header() ; ?&gt;
&lt;?php auth_redirect(); // checks to see if logged in else redirect ?&gt;
&lt;!-- HERE GOES HTML AND CSS DEPENDING ON YOUR THEME --&gt;

&lt;?php get_footer(); ?&gt;
</pre>
<p>3. Go create a post, set the template to &#8220;Login Protected Template&#8221;  (will show up)</p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/10/arrtri.jpg"><img class="alignnone size-full wp-image-3449" title="arrtri" src="http://corpocrat.com/wp-content/uploads/2011/10/arrtri.jpg" alt="" width="210" height="212" /></a></p>
<p>4. Directly write the content and publish it.</p>
<p>There is one more alternative to check logins is use</p>
<pre class="brush: php; title: CODE; notranslate">

if (!is_user_logged_in()) {
wp_redirect(&quot;/wp-login.php&quot;);
}
</pre>
<p>Thats it! Your login protected page is ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/10/28/wordpress-how-to-create-a-login-protected-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; how to add custom field when post is published?</title>
		<link>http://corpocrat.com/2011/10/28/wordpress-how-to-add-custom-field-when-post-is-published/</link>
		<comments>http://corpocrat.com/2011/10/28/wordpress-how-to-add-custom-field-when-post-is-published/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 14:17:41 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3437</guid>
		<description><![CDATA[<p>It is dead easy to set a custom field to your post, programmatically when the post is published. For example, whenever your post is published, you might want to add a custom field &#8220;submitted&#8221; and set its value to &#8220;1&#8243;, when a post is published.</p>
<p>Here is how you do it. ...]]></description>
			<content:encoded><![CDATA[<p>It is dead easy to set a custom field to your post, programmatically when the post is published. For example, whenever your post is published, you might want to add a custom field &#8220;submitted&#8221; and set its value to &#8220;1&#8243;, when a post is published.</p>
<p>Here is how you do it. Call the <strong>publish_post</strong> hook, pass a function since the hook runs whenever a post it published.</p>
<p>We are creating a new custom field &#8220;submit&#8221; and setting its value to &#8220;1&#8243; when ever the post is published. The code will only create custom field, when the user role is &#8220;author&#8221;. If you dont check for user role, this code will run for even admins and all users. We are going one more step with this code, against by checking another custom field <strong>&#8220;custom_field_1&#8243;</strong> with a particular value exists.</p>
<p>We pull the value of a custom field using <strong>get_post_meta</strong> function and we create custom field for the post using <strong>add_post_meta</strong> function. Note that true parameter, makes the custom field unique and no duplication possible.</p>
<pre class="brush: php; title: CODE; notranslate">

add_action('publish_post','create_custom_field')

function create_custom_field ($post_id) {
global $wpdb;
if ( current_user_can('contributor') ) {

if(get_post_meta($post_id,'custom_field_1',true) == '1'){
add_post_meta($post_ID,'submit','1',true);
return $post_id;
}

return $post_id;
}

}
</pre>
<p>For full list of action hooks, applied to posts, please go through: <a href="http://codex.wordpress.org/Plugin_API/Action_Reference" target="_blank">http://codex.wordpress.org/Plugin_API/Action_Reference</a></p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/10/28/wordpress-how-to-add-custom-field-when-post-is-published/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to redirect when post submitted for review in WordPress</title>
		<link>http://corpocrat.com/2011/10/28/how-to-redirect-when-post-submitted-for-review-in-wordpress/</link>
		<comments>http://corpocrat.com/2011/10/28/how-to-redirect-when-post-submitted-for-review-in-wordpress/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 13:57:05 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3434</guid>
		<description><![CDATA[<p>I was working recently on custom project and i wanted wordpress to redirect to a custom payment page, when somebody submits a post for review.  It was such a simple step and quite disappointed that there was no wordpress plugin to do this job. If it was in php, i ...]]></description>
			<content:encoded><![CDATA[<p>I was working recently on custom project and i wanted wordpress to redirect to a custom payment page, when somebody submits a post for review.  It was such a simple step and quite disappointed that there was no wordpress plugin to do this job. If it was in php, i would have done this in a fly. Finally i decided to code myself, using itsy bitsy code.</p>
<p>Having spent whole day banging my head on the wall, i found this simple code, does the job. Put this code in your theme <strong>function.php file</strong> or create your own plugin.</p>
<p>My users are set on &#8220;contributor&#8221; role by default.</p>
<blockquote><p>keep in mind the hook <strong>edit_posts</strong>, runs, when a user submits a post for review (pending). This is for contributor role. For author role, the hook publish_posts runs when authors submit posts for review.</p></blockquote>
<p>I created a separate payment page, which i had links for paypal and 2checkout. The code checks to make sure only those users under &#8220;contributor&#8221; role (not admins) will get redirected to payment page, upon submitting a post for review.</p>
<pre class="brush: php; title: CODE; notranslate">

add_action('edit_post','payment_redirect');

function payment_redirect($post_id) {
global $wpdb;
if ( current_user_can('contributor') ) {
wp_redirect(&quot;http://example.com/paypal/&quot;);
exit;
}
return $post_id;
}
</pre>
<p>Hope this helps!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/10/28/how-to-redirect-when-post-submitted-for-review-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Retrieve author/user details from Post ID</title>
		<link>http://corpocrat.com/2011/10/28/wordpress-retrieve-authoruser-details-from-post-id/</link>
		<comments>http://corpocrat.com/2011/10/28/wordpress-retrieve-authoruser-details-from-post-id/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 13:35:57 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3431</guid>
		<description><![CDATA[<p>Very often in your projects, you want to pull out the author data, given a post id. It is very easy do it in wordpress.</p>
<p>It can be accomplished by the_author_meta() function or get_the_author_meta() function.You will need call this function in your theme or plugin, through a hook</p>
<p>the_author_meta() &#8211;&#62; Outputs the ...]]></description>
			<content:encoded><![CDATA[<p>Very often in your projects, you want to pull out the author data, given a post id. It is very easy do it in wordpress.</p>
<p>It can be accomplished by <strong>the_author_meta()</strong> function or <strong>get_the_author_meta()</strong> function.You will need call this function in your theme or plugin, through a hook</p>
<blockquote><p>the_author_meta() &#8211;&gt; Outputs the data, just like echo<br />
get_the_author_meta() -&gt; holds the value in value.</p></blockquote>
<p>The below function, retreives user details like&#8230;</p>
<pre class="brush: php; title: CODE; notranslate">
function author_details($post_ID)  {
$auth = get_post($post_ID); // gets author from post
$authid = $auth-&gt;post_author; // gets author id for the post
$user_email = get_the_author_meta('user_email',$authid); // retrieve user email
$user_firstname = get_the_author_meta('user_firstname',$authid); // retrieve firstname
$user_nickname = get_the_author_meta('nickname,$authid); // retrieve user nickname
}
</pre>
<p>The following list of user fields you can retrieve using this function.</p>
<ul>
<li><tt>user_login</tt></li>
<li><tt>user_pass</tt></li>
<li><tt>user_nicename</tt></li>
<li><tt>user_email</tt></li>
<li><tt>user_url</tt></li>
<li><tt>user_registered</tt></li>
<li><tt>user_activation_key</tt></li>
<li><tt>user_status</tt></li>
<li><tt>display_name</tt></li>
<li><tt>nickname</tt></li>
<li><tt>first_name</tt></li>
<li><tt>last_name</tt></li>
<li><tt>description</tt></li>
<li><tt>jabber</tt></li>
<li><tt>aim</tt></li>
<li><tt>yim</tt></li>
<li><tt>user_level</tt></li>
<li><tt>user_firstname</tt></li>
<li><tt>user_lastname</tt></li>
<li><tt>user_description</tt></li>
<li><tt>rich_editing</tt></li>
<li><tt>comment_shortcuts</tt></li>
<li><tt>admin_color</tt></li>
<li><tt>plugins_per_page</tt></li>
<li><tt>plugins_last_view</tt></li>
<li><tt>ID</tt></li>
</ul>
<p>For full reference, please see: <a href="http://codex.wordpress.org/Function_Reference/the_author_meta" target="_blank">http://codex.wordpress.org/Function_Reference/the_author_meta</a></p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/10/28/wordpress-retrieve-authoruser-details-from-post-id/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to assign or remove user permissions in WordPress</title>
		<link>http://corpocrat.com/2011/10/28/wordpress-assign-or-remove-permissions-to-users/</link>
		<comments>http://corpocrat.com/2011/10/28/wordpress-assign-or-remove-permissions-to-users/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 12:52:18 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3416</guid>
		<description><![CDATA[<p>In wordpress, it is very easy to add and remove permissions to your wordpress registered users. For example, you can set wordpress default user role to &#8220;contributor&#8221; which means those who register in your website, automatically become contributors and they will be able to post articles in your wordpress &#8220;pending ...]]></description>
			<content:encoded><![CDATA[<p>In wordpress, it is very easy to add and remove permissions to your wordpress registered users. For example, you can set wordpress default user role to &#8220;contributor&#8221; which means those who register in your website, automatically become contributors and they will be able to post articles in your wordpress &#8220;pending review&#8221;. In that way you restrict your users not to spam you by publishing posts. If you set the user role to &#8220;author&#8221;, then they will instantly publish posts.</p>
<p>Permissions, are otherwise called &#8220;capabilities&#8221; in wordpress, depending on user role. For example &#8220;subscribers&#8221; can only read in your website and cannot submit posts. Similarly &#8220;contributors&#8221; cannot delete/edit posts once published by admin.</p>
<blockquote><p>The best plugin i have seen to customize user panel permission is <a href="http://wordpress.org/extend/plugins/adminimize/" target="_blank">adminimize</a>. Be sure to play around with this plugin.</p></blockquote>
<p>Be sure to read this: <a href="http://codex.wordpress.org/Roles_and_Capabilities">http://codex.wordpress.org/Roles_and_Capabilities</a></p>
<p>The good news is you alter the user permissions, which wordpress assigns by default. You may allow contributors permission to delete and edit posts even after they are published. It is so easy and can be done with just 2 lines of code.</p>
<p>Go to your theme folders <strong>function.php,  </strong>and place the below code and this will alter permission to all your users in the admin area. You could even use this code in your plugin.</p>
<p>This code runs, when <strong>admin_init</strong> hook is called during load of admin section.</p>
<pre class="brush: php; title: CODE; notranslate">
function change_user_permissions() {

$role = get_role( 'contributor' ); // gets the author role

$role-&gt;add_cap( 'edit_others_posts' ); //edit others' posts for current theme only
$role-&gt;add_cap( 'edit_posts' ); // edit own posts
$role-&gt;add_cap('delete_posts'); // delete own posts
$role-&gt;add_cap('publish_posts'); // publish own posts

$role-&gt;remove_cap('edit_posts'); //removes the permission set before
$role-&gt;remove_cap('delete_posts'); // delete own posts
}

add_action( 'admin_init', 'change_user_permissions');
&amp;nbsp;</pre>
<p>For complete list of user capability functions, see: <a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_blank">http://codex.wordpress.org/Roles_and_Capabilities</a></p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/10/28/wordpress-assign-or-remove-permissions-to-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Published contributor posts cannot be deleted in WordPress!</title>
		<link>http://corpocrat.com/2011/10/18/published-contributor-posts-cannot-be-deleted-in-wordpress/</link>
		<comments>http://corpocrat.com/2011/10/18/published-contributor-posts-cannot-be-deleted-in-wordpress/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 04:21:07 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3406</guid>
		<description><![CDATA[<p>User roles determine editing and deleting posts by your site users. The main difference between author role and contributor role is</p>

Authors -&#62; Create/Edit/Delete posts + Publish
Contributors -&#62; Create/Edit/Delete before publishing  + Submit for review (cannot Publish) + Cannot Edit/Delete Published posts

<p>The main difference is contributors, once posts are published,  posts ...]]></description>
			<content:encoded><![CDATA[<p>User roles determine editing and deleting posts by your site users. The main difference between author role and contributor role is</p>
<ul>
<li>Authors -&gt; Create/Edit/Delete posts + Publish</li>
<li>Contributors -&gt; Create/Edit/Delete before publishing  + Submit for review (cannot Publish) + Cannot Edit/Delete Published posts</li>
</ul>
<p>The main difference is contributors, once posts are published,  posts cannot be edited or deleted by contributors.  Often you want your website users to post articles to you in wordpress, and you want to approve them manually. You will also need give them provisions to edit or remove posts after publishing. Not allowing contributors to delete or edit posts sometimes force you to change their role as author. But the problem with author is the posts are published automatically and your site users could spam you. In that context, the contributor role is ideal option.</p>
<p>You can easily override permission contributor issue by just placing 2 lines in your <strong>functions.php</strong> in your theme.</p>
<p><code>$role = get_role( 'contributor' ); // gets the author role<br />
$role-&gt;add_cap('delete_published_posts' );</code></p>
<p>&nbsp;</p>
<p>Trust me, it will work like magic!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/10/18/published-contributor-posts-cannot-be-deleted-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 Useful WordPress plugins for Clickbank affiliates</title>
		<link>http://corpocrat.com/2011/09/19/7-useful-wordpress-plugins-for-clickbank-affiliates/</link>
		<comments>http://corpocrat.com/2011/09/19/7-useful-wordpress-plugins-for-clickbank-affiliates/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 19:40:45 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress clickbank]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3379</guid>
		<description><![CDATA[<p></p>
<p>If you are a clickbank affiliate, wanting to promote clickbank products, there are 2 ways you can promote clickbank products from your wordpress site. Either directly get the affiliate code and paste it on your wordpress website or use a wordpress plugin.</p>
1. Hop Ad Builder
<p>Use Hop Ad Builder from clickbank, ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://corpocrat.com/wp-content/uploads/2011/09/clickba.jpg"><img class="alignnone size-full wp-image-3388" title="clickba" src="http://corpocrat.com/wp-content/uploads/2011/09/clickba.jpg" alt="" width="300" height="200" /></a></p>
<p>If you are a clickbank affiliate, wanting to promote clickbank products, there are 2 ways you can promote clickbank products from your wordpress site. Either directly get the affiliate code and paste it on your wordpress website or use a wordpress plugin.</p>
<h3>1. Hop Ad Builder</h3>
<p>Use Hop Ad Builder from clickbank, get the iframe code, and go to your wp-content themes folder, select your theme and then open single.php or sidebar.php to directly paste the code.  If you specify 2 or 3 keywords in your code, clickbank will automatically show relevent ads.</p>
<p>Hop Ad Builder &#8211; <a href="http://www.clickbank.com/help/affiliate-help/affiliate-tools/hopad-builder/" target="_blank">http://www.clickbank.com/help/affiliate-help/affiliate-tools/hopad-builder/</a></p>
<h3>2. Clickbank WordPress Plugins</h3>
<p>Another way of doing it is, get a wordpress plugin. This plugin will automatically show relevent clickbank affiliate products depending on the content or plugin like ucontext which automatically picks keywords in your sitecontent and turns them into affiliate links There arent many clickbank wordpress plugins available, but those listed below should give you a pretty good start with your clickbank affiliate campaign</p>
<ul>
<li> <a href="http://wordpress.org/extend/plugins/clickbank-hop-ad/" target="_blank">Clickbank HopAD</a><strong></strong></li>
<li><strong></strong> <a href="http://wordpress.org/extend/plugins/wordpress-clickbank-integration/" target="_blank">WordPress Clickbank Plugin</a></li>
<li><a href="http://wordpress.org/extend/plugins/wordpress-clickbank-integration/" target="_blank">WordPress Clickbank Integration</a><strong></strong></li>
<li><strong></strong><a href="http://wordpress.org/extend/plugins/clickbank-framework/" target="_blank">Clickbank Framework</a><strong></strong></li>
<li><strong></strong><a href="http://wordpress.org/extend/plugins/ucontext/" target="_blank">uContext Plugin</a><strong></strong></li>
<li><a href="http://wordpress.org/extend/plugins/wp-contextual-affiliate-ads/" target="_blank">WP Contextual Affiliate Ads</a></li>
<li><strong></strong><a href="http://wordpress.org/extend/plugins/ad-injection/" target="_blank">Ad Injection</a><strong></strong></li>
<li><strong></strong> <a href="http://wpaffiliate.net/" target="_blank">WP Affiliate</a></li>
</ul>
<p>Hope this helps, if you are searching for a clickbank affiliate wordpress plugin</p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/09/19/7-useful-wordpress-plugins-for-clickbank-affiliates/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Best Tutorial Videos for WordPress Plugin Writing</title>
		<link>http://corpocrat.com/2011/09/11/best-tutorial-videos-for-wordpress-plugin-writing/</link>
		<comments>http://corpocrat.com/2011/09/11/best-tutorial-videos-for-wordpress-plugin-writing/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 08:17:48 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=3174</guid>
		<description><![CDATA[<p></p>
<p>Writing WordPress plugins  on your own can be difficult at first, unless you are experienced wordpress developer who perfectly understood the core functionality of wordpress. Fortunately wordpress plugin writing is easy to master once you have understood the basics.  I have compiled some the the youtube videos and i found ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://corpocrat.com/wp-content/uploads/2010/12/wordpressplugin.png"><img class="alignnone size-full wp-image-2182" title="wordpressplugin" src="http://corpocrat.com/wp-content/uploads/2010/12/wordpressplugin.png" alt="" width="400" height="218" /></a></p>
<p>Writing WordPress plugins  on your own can be difficult at first, unless you are experienced wordpress developer who perfectly understood the core functionality of wordpress. Fortunately wordpress plugin writing is easy to master once you have understood the basics.  I have compiled some the the youtube videos and i found pretty interesting to follow up and learn if you are new to wordpress plugin writing.</p>
<h3>WordPress Plugin Writing in 10 Minutes</h3>
<p><iframe src="http://www.youtube.com/embed/t7CevqOPHD4" frameborder="0" width="420" height="345"></iframe></p>
<h3>Making your First WordPress Plugin</h3>
<p><iframe src="http://www.youtube.com/embed/ZeJKU-99NVg" frameborder="0" width="560" height="345"></iframe></p>
<h3>How to Make a WordPress Plugin</h3>
<p><iframe src="http://www.youtube.com/embed/cl7YhWpA17w" frameborder="0" width="420" height="345"></iframe></p>
<h3>Developing your First WordPress Plugin</h3>
<p><iframe src="http://www.youtube.com/embed/t5TeK_t3wp0" frameborder="0" width="560" height="345"></iframe></p>
<h3>Plugin Development Best Practises<br />
(Part 1 to 4)</h3>
<p><iframe src="http://www.youtube.com/embed/PIa0n8rbUFQ" frameborder="0" width="560" height="345"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/09/11/best-tutorial-videos-for-wordpress-plugin-writing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix: WordPress twenty ten theme shows no excerpt/summary!</title>
		<link>http://corpocrat.com/2011/05/14/fix-wordpress-twenty-ten-theme-shows-no-excerptsummary/</link>
		<comments>http://corpocrat.com/2011/05/14/fix-wordpress-twenty-ten-theme-shows-no-excerptsummary/#comments</comments>
		<pubDate>Sat, 14 May 2011 15:23:54 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[twenty ten theme]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=2837</guid>
		<description><![CDATA[<p>I was using latest version of wordpress and with default twenty ten theme i had difficulty in making wordpress show excerpt summary on home and category pages. Unlike previous wordpress versions, you can even find the_content() in index.php to change to the_excerpt().</p>
<p></p>
<p>Besides these i couldnt find any option in wordpress ...]]></description>
			<content:encoded><![CDATA[<p>I was using latest version of wordpress and with default twenty ten theme i had difficulty in making wordpress show excerpt summary on home and category pages. Unlike previous wordpress versions, you can even find the_content() in index.php to change to the_excerpt().</p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/05/2010screenshot1.png"><img class="size-full wp-image-2848 alignnone" title="2010screenshot" src="http://corpocrat.com/wp-content/uploads/2011/05/2010screenshot1.png" alt="" width="300" height="225" /></a></p>
<p>Besides these i couldnt find any option in wordpress dashboard to show up excerpts in home page and i had to do the hard way.</p>
<p>if you are struggling to make this work, here is how you do it. Go to twenty ten theme folder inside wp-content, and open loop.php. There you have to make a small change.. see line 137</p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/05/code.png"><img class="alignnone size-full wp-image-2838" title="code" src="http://corpocrat.com/wp-content/uploads/2011/05/code.png" alt="" width="502" height="229" /></a></p>
<p>Notice carefully on line 137 of loop.php, i have inserted <strong>is_home()</strong> within an if. Thats all you need to do!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/05/14/fix-wordpress-twenty-ten-theme-shows-no-excerptsummary/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>30+ Best WordPress Themes for Personal Blogging from Themeforest</title>
		<link>http://corpocrat.com/2011/04/30/30-best-wordpress-themes-for-personal-blogging-from-themeforest/</link>
		<comments>http://corpocrat.com/2011/04/30/30-best-wordpress-themes-for-personal-blogging-from-themeforest/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 07:35:24 +0000</pubDate>
		<dc:creator>pbu</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://corpocrat.com/?p=2730</guid>
		<description><![CDATA[<p></p>
<p>I have been a great fan of designers from themeforest who have the knack of making some stunning wordpress themes. As much i love buying wordpress themes from themeforest, it really takes a lot of time to go through thousands of themes, seeing previews and pick the best ones i ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://corpocrat.com/wp-content/uploads/2010/08/wordpress.png"><img class="alignnone size-full wp-image-1543" title="wordpress" src="http://corpocrat.com/wp-content/uploads/2010/08/wordpress.png" alt="" width="315" height="204" /></a></p>
<p>I have been a great fan of designers from themeforest who have the knack of making some stunning wordpress themes. As much i love buying wordpress themes from themeforest, it really takes a lot of time to go through thousands of themes, seeing previews and pick the best ones i prefer.</p>
<h1>1. Revolution</h1>
<p><a href="http://themeforest.net/item/revolution-magazine/114530?ref=olddocks">http://www.themeforest.net</a><br />
<a href="http://corpocrat.com/wp-content/uploads/2011/04/revolution.jpg"><img class="size-full wp-image-2753 alignnone" title="revolution" src="http://corpocrat.com/wp-content/uploads/2011/04/revolution.jpg" alt="" width="500" height="263" /></a></p>
<h1>2. Vectors</h1>
<p><a href="http://themeforest.net/item/vectors-community-wordpress-theme/163752?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/vectors.jpg"><img class="alignleft size-full wp-image-2759" title="vectors" src="http://corpocrat.com/wp-content/uploads/2011/04/vectors.jpg" alt="" width="500" height="361" /></a></p>
<h1>Newscast</h1>
<p><a href="http://themeforest.net/item/newscast-4-in-1-wordpress-magazine-and-blog/91058?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/newscast.jpg"><img class="alignnone size-full wp-image-2747" title="newscast" src="http://corpocrat.com/wp-content/uploads/2011/04/newscast.jpg" alt="" width="500" height="277" /></a></p>
<h1>Templastic</h1>
<p><a href="http://themeforest.net/item/temptastic-premium-wordpress-magazine-theme/162536?ref=olddocks">http://www.themeforest.net</a></p>
<h1><a href="http://corpocrat.com/wp-content/uploads/2011/04/templastic.jpg"><img class="alignnone size-full wp-image-2757" title="templastic" src="http://corpocrat.com/wp-content/uploads/2011/04/templastic.jpg" alt="" width="500" height="240" /></a></h1>
<h1>Collective</h1>
<p><a href="http://themeforest.net/item/collective-community-wordpress-theme/123906?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/collective.jpg"><img class="alignnone size-full wp-image-2736" title="collective" src="http://corpocrat.com/wp-content/uploads/2011/04/collective.jpg" alt="" width="500" height="348" /></a></p>
<h1>Equator</h1>
<p><a href="http://themeforest.net/item/equator-global-community-wordpress-theme/65549?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/equator.jpg"><img class="alignnone size-full wp-image-2741" title="equator" src="http://corpocrat.com/wp-content/uploads/2011/04/equator.jpg" alt="" width="500" height="378" /></a></p>
<h1>Rooster</h1>
<p><a href=" http://themeforest.net/item/sofa-rooster-wordpress-theme/57508?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/rooster.jpg"><img class="alignnone size-full wp-image-2754" title="rooster" src="http://corpocrat.com/wp-content/uploads/2011/04/rooster.jpg" alt="" width="500" height="329" /></a></p>
<h1>Future Blogger</h1>
<p><a href="http://themeforest.net/item/future-blogger-community-theme/71457?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/futureblogger.jpg"><img class="alignnone size-full wp-image-2742" title="futureblogger" src="http://corpocrat.com/wp-content/uploads/2011/04/futureblogger.jpg" alt="" width="500" height="371" /></a></p>
<h1>Convergence</h1>
<p><a href="http://themeforest.net/item/convergence-community-wordpress-theme/34924?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/convergence.jpg"><img class="alignnone size-full wp-image-2739" title="convergence" src="http://corpocrat.com/wp-content/uploads/2011/04/convergence.jpg" alt="" width="500" height="279" /></a></p>
<h1>PSD Planet</h1>
<p><a href="http://themeforest.net/item/psd-planet-wp/114917?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/psdplanet.jpg"><img class="alignnone size-full wp-image-2752" title="psdplanet" src="http://corpocrat.com/wp-content/uploads/2011/04/psdplanet.jpg" alt="" width="500" height="377" /></a></p>
<h1>Tutsplaza</h1>
<p><a href="http://themeforest.net/item/tutsplaza-premium-community-theme/113225?ref=olddocks">http://www.themeforest.net</a><br />
<a href="http://corpocrat.com/wp-content/uploads/2011/04/tutsplaza.jpg"><img class="alignnone size-full wp-image-2758" title="tutsplaza" src="http://corpocrat.com/wp-content/uploads/2011/04/tutsplaza.jpg" alt="" width="500" height="279" /></a></p>
<h1>MyWordpress</h1>
<p><a href="http://themeforest.net/item/convergence-community-wordpress-theme/34924?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2010/11/mywordpress2.png"><img class="alignnone size-full wp-image-1771" title="mywordpress2" src="http://corpocrat.com/wp-content/uploads/2010/11/mywordpress2.png" alt="" width="500" height="288" /></a></p>
<h1>Copilot</h1>
<p><a href="http://themeforest.net/item/copilot-wordpress-and-tumblog-theme/146199?ref=olddocks">http://www.themeforest.net</a></p>
<p>WordPress tumblog like theme</p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/copilot.jpg"><img class="alignnone size-full wp-image-2740" title="copilot" src="http://corpocrat.com/wp-content/uploads/2011/04/copilot.jpg" alt="" width="500" height="304" /></a></p>
<h1>Intermission</h1>
<p><a href="http://themeforest.net/item/intermission-blog-cms-wordpress-theme/130738?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/intermission.jpg"><img class="alignnone size-full wp-image-2744" title="intermission" src="http://corpocrat.com/wp-content/uploads/2011/04/intermission.jpg" alt="" width="500" height="307" /></a></p>
<h1>Post It</h1>
<p><a href="http://themeforest.net/item/post-it/55417?ref=olddocks">http://www.themeforest.net</a><br />
<a href="http://corpocrat.com/wp-content/uploads/2011/04/postit.jpg"><img class="alignnone size-full wp-image-2750" title="postit" src="http://corpocrat.com/wp-content/uploads/2011/04/postit.jpg" alt="" width="500" height="280" /></a></p>
<h1>Standart</h1>
<p><a href="http://themeforest.net/item/standard/46808?ref=olddocks">http://www.themeforest.net</a><br />
<a href="http://corpocrat.com/wp-content/uploads/2011/04/standard.jpg"><img class="alignnone size-full wp-image-2756" title="standard" src="http://corpocrat.com/wp-content/uploads/2011/04/standard.jpg" alt="" width="500" height="271" /></a></p>
<h1>Global Press</h1>
<p><a href="http://themeforest.net/item/global-press-a-premium-magazine-wordpress-theme/84602?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/globalpress.jpg"><img class="alignnone size-full wp-image-2743" title="globalpress" src="http://corpocrat.com/wp-content/uploads/2011/04/globalpress.jpg" alt="" width="500" height="313" /></a></p>
<h1>BREST</h1>
<p><a href="http://themeforest.net/item/brest-magazine-wordpress-theme/123329?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/brest.jpg"><img class="alignnone size-full wp-image-2733" title="brest" src="http://corpocrat.com/wp-content/uploads/2011/04/brest.jpg" alt="" width="500" height="255" /></a></p>
<h1>Communitie</h1>
<p><a href="http://themeforest.net/item/communitie-wordpress-blog/111782?ref=olddocks">http://www.themeforest.net</a><br />
<a href="http://corpocrat.com/wp-content/uploads/2011/04/communitie.jpg"><img class="alignnone size-full wp-image-2737" title="communitie" src="http://corpocrat.com/wp-content/uploads/2011/04/communitie.jpg" alt="" width="500" height="248" /></a></p>
<h1>Premium Magazine</h1>
<p><a href="http://themeforest.net/item/premium-magazine-wordpress-theme/112916?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/premmagazine.jpg"></a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/premmagazine.jpg"><img class="alignnone size-full wp-image-2751" title="premmagazine" src="http://corpocrat.com/wp-content/uploads/2011/04/premmagazine.jpg" alt="" width="500" height="254" /></a></p>
<h1>OPEN Community</h1>
<p><a href="http://themeforest.net/item/open-community-wordpress-theme/138711?ref=olddocks">http://www.themeforest.net</a><br />
<a href="http://corpocrat.com/wp-content/uploads/2011/04/opencommunity.jpg"><img class="alignnone size-full wp-image-2748" title="opencommunity" src="http://corpocrat.com/wp-content/uploads/2011/04/opencommunity.jpg" alt="" width="500" height="272" /></a></p>
<h1>Machtastic</h1>
<p><a href="http://themeforest.net/item/machtastic-commercial-wordpress-theme-/154079?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/machtastic.jpg"><img class="alignnone size-full wp-image-2746" title="machtastic" src="http://corpocrat.com/wp-content/uploads/2011/04/machtastic.jpg" alt="" width="500" height="275" /></a></p>
<h1>Websource</h1>
<p><a href="http://themeforest.net/item/websource-wordpress-magazine-theme/111981?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/websource.jpg"><img class="alignnone size-full wp-image-2760" title="websource" src="http://corpocrat.com/wp-content/uploads/2011/04/websource.jpg" alt="" width="500" height="294" /></a></p>
<h1>ZillaPress</h1>
<p><a href="http://themeforest.net/item/zillapress-wordpress-magazine-community-theme/120675?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/zillapress.jpg"><img class="alignnone size-full wp-image-2761" title="zillapress" src="http://corpocrat.com/wp-content/uploads/2011/04/zillapress.jpg" alt="" width="500" height="280" /></a></p>
<h1>Community Innovation</h1>
<p><a href="http://themeforest.net/item/community-innovation/101572?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/communityinnovation.jpg"><img class="alignnone size-full wp-image-2738" title="communityinnovation" src="http://corpocrat.com/wp-content/uploads/2011/04/communityinnovation.jpg" alt="" width="500" height="396" /></a></p>
<h1>Caulk</h1>
<p><a href="http://themeforest.net/item/caulk/76108?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/caulk.jpg"><img class="alignnone size-full wp-image-2735" title="caulk" src="http://corpocrat.com/wp-content/uploads/2011/04/caulk.jpg" alt="" width="500" height="290" /></a></p>
<h1>PIM Newspaper/Blog</h1>
<p><a href="http://themeforest.net/item/pim-newspaper-magazine-and-blog-template/129490?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/pim.jpg"><img class="alignnone size-full wp-image-2749" title="pim" src="http://corpocrat.com/wp-content/uploads/2011/04/pim.jpg" alt="" width="500" height="277" /></a></p>
<h1>Abandu</h1>
<p><a href="http://themeforest.net/item/abandu/58594?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/abandu.jpg"><img class="alignnone size-full wp-image-2732" title="abandu" src="http://corpocrat.com/wp-content/uploads/2011/04/abandu.jpg" alt="" width="500" height="288" /></a></p>
<h1>Castiel</h1>
<p><a href="http://themeforest.net/item/castiel-a-magazine-style-wordpress-theme/132883?ref=olddocks">http://www.themeforest.net</a></p>
<p><a href="http://corpocrat.com/wp-content/uploads/2011/04/castiel.jpg"><img class="alignnone size-full wp-image-2734" title="castiel" src="http://corpocrat.com/wp-content/uploads/2011/04/castiel.jpg" alt="" width="500" height="354" /></a></p>
<p>Hope you have enjoyed the themes!</p>
]]></content:encoded>
			<wfw:commentRss>http://corpocrat.com/2011/04/30/30-best-wordpress-themes-for-personal-blogging-from-themeforest/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

