<?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>CodeHelper.in &#187; Word Press</title>
	<atom:link href="http://code.24by7info.net/category/word-press/feed/" rel="self" type="application/rss+xml" />
	<link>http://code.24by7info.net</link>
	<description></description>
	<lastBuildDate>Thu, 08 Dec 2011 17:47:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>List WordPress Popular Post Without Plugin for theme development</title>
		<link>http://code.24by7info.net/list-wordpress-popular-post-without-plugin-for-theme-development/</link>
		<comments>http://code.24by7info.net/list-wordpress-popular-post-without-plugin-for-theme-development/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 08:15:25 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[how to list wordpress popular post]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=490</guid>
		<description><![CDATA[This method actually uses  wpdb class function. As Bin-Blog shows points out here , an easy way to list the popular post is by using wpdb class function to get the result for most commented posts. $popular_posts = $wpdb-&#62;get_results(&#34;SELECT id,post_title FROM {$wpdb-&#62;prefix}posts ORDER BY comment_count DESC LIMIT 0,10&#34;); foreach($popular_posts as $post) { print &#34;&#60;li&#62;&#60;a href='&#34;. [...]]]></description>
			<content:encoded><![CDATA[This method actually uses  wpdb class function. As Bin-Blog shows points out here , an easy way to list the popular post is by using wpdb class function to get the result for most commented posts.

[php]

$popular_posts = $wpdb-&gt;get_results(&]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/list-wordpress-popular-post-without-plugin-for-theme-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting wp Tag Cloud in WordPress Theme Development</title>
		<link>http://code.24by7info.net/getting-wp-tag-cloud-in-wordpress-theme-development/</link>
		<comments>http://code.24by7info.net/getting-wp-tag-cloud-in-wordpress-theme-development/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 08:10:45 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[how to get wp cloud in wordpress theme]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=487</guid>
		<description><![CDATA[Showing wordpress cloud tag is very simple. Just specify the size of the most and least tagged post and how do you want to order it by. [php] &#60;div&#62; &#60;div&#62;wp_tag_cloud('number=30&#38;smallest=14&#38;largest=30&#38;orderby=name');&#60;/]]></description>
			<content:encoded><![CDATA[Showing wordpress cloud tag is very simple. Just specify the size of the  most and least tagged post and how do you want to order it by.

[php]
&lt;div&gt;
&lt;div&gt;wp_tag_cloud('number=30&amp;smallest=14&amp;largest=30&amp;orderby=name');&lt;/]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/getting-wp-tag-cloud-in-wordpress-theme-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing wp-pages in WordPress Custom theme Development</title>
		<link>http://code.24by7info.net/listing-pages-in-wordpress-custom-theme-development/</link>
		<comments>http://code.24by7info.net/listing-pages-in-wordpress-custom-theme-development/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 08:05:06 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[how to list pages in wordpress]]></category>
		<category><![CDATA[wordpress pages]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=481</guid>
		<description><![CDATA[Listing how many pages you have is pretty much same as category. Therefore, I won’t go into too much details [php] /* Listing all pages*/ wp_list_pages('title_li='); /* Exclude pages */ wp_list_pages('exclude=17,38' ); /* Order by dat]]></description>
			<content:encoded><![CDATA[Listing how many pages you have is pretty much same as category. Therefore, I won’t go into too much details

[php]

/* Listing all pages*/
 wp_list_pages('title_li=');
 /* Exclude pages */
 wp_list_pages('exclude=17,38' );
 /* Order by dat]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/listing-pages-in-wordpress-custom-theme-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Theme Development useful Template Tags</title>
		<link>http://code.24by7info.net/wordpress-theme-development-useful-template-tags/</link>
		<comments>http://code.24by7info.net/wordpress-theme-development-useful-template-tags/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 07:08:07 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=474</guid>
		<description><![CDATA[Template tags can be used in your wordpress theme to display information dynamically or retrieving information about your wordpress blog. In this post we will show you some easy and useful wordpress template tag that you can use in your theme.]]></description>
			<content:encoded><![CDATA[Template tags can be used in your wordpress theme to display information  dynamically or retrieving information about your wordpress blog. In  this post we will show you some easy and useful wordpress template tag  that you can use in your theme.

]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/wordpress-theme-development-useful-template-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Integrate Feedburner into WordPress</title>
		<link>http://code.24by7info.net/how-to-integrate-feedburner-into-wordpress/</link>
		<comments>http://code.24by7info.net/how-to-integrate-feedburner-into-wordpress/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 03:24:38 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=373</guid>
		<description><![CDATA[Feedburner is a free, Google-owned service that provides great feed statistics and services to bloggers and other feed publishers. Here’s how to integrate Feedburner with a self-hosted WordPress blog: Sign up — First of all, you’]]></description>
			<content:encoded><![CDATA[

Feedburner is a free, Google-owned service that provides great feed statistics and services to bloggers and other feed publishers.



Here’s how to integrate Feedburner with a self-hosted WordPress blog:

	Sign up — First of all, you’]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/how-to-integrate-feedburner-into-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Email Subscription with Feedburner</title>
		<link>http://code.24by7info.net/enable-email-subscription-with-feedburner/</link>
		<comments>http://code.24by7info.net/enable-email-subscription-with-feedburner/#comments</comments>
		<pubDate>Sun, 12 Dec 2010 03:20:23 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[Enable]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[Subscription]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=370</guid>
		<description><![CDATA[Not all visitors to your WordPress blog will be familiar with RSS feeds or how they work, while some other visitors just don’t want to mess with using a feed reader. RSS isn’t the only push-delivery method out there: email subscription is a]]></description>
			<content:encoded><![CDATA[

Not all visitors to your WordPress blog will be familiar with RSS feeds or how they work, while some other  visitors just don’t want to mess with using a feed reader. RSS isn’t  the only push-delivery method out there: email subscription is a]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/enable-email-subscription-with-feedburner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Rolls Out New HTML5-Friendly Theme</title>
		<link>http://code.24by7info.net/wordpress-rolls-out-new-html5-friendly-theme/</link>
		<comments>http://code.24by7info.net/wordpress-rolls-out-new-html5-friendly-theme/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 04:27:26 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=364</guid>
		<description><![CDATA[WordPress has just introduced Toolbox, a brand new theme that will let its users take advantage of some nifty HTML5 elements with the Custom CSS upgrade. Toolbox is “a semantic, HTML5, canvas for CSS artists and an ultra-minimal set of]]></description>
			<content:encoded><![CDATA[<p>WordPress has just introduced Toolbox, a brand new theme that will let its users take advantage of some nifty HTML5 elements with the Custom CSS upgrade.</p>
<p>Toolbox  is “a semantic, HTML5, canvas for CSS artists and an ultra-minimal set  of]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/wordpress-rolls-out-new-html5-friendly-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Features in WordPress 3.1</title>
		<link>http://code.24by7info.net/new-features-in-wordpress-3-1/</link>
		<comments>http://code.24by7info.net/new-features-in-wordpress-3-1/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 13:02:23 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[Ajaxified Admin Screens]]></category>
		<category><![CDATA[Health Check]]></category>
		<category><![CDATA[Improved UI for Searching and Browsing Installed Themes]]></category>
		<category><![CDATA[Post Styles]]></category>
		<category><![CDATA[Post Templates]]></category>
		<category><![CDATA[Quick Press Template Tag]]></category>
		<category><![CDATA[Separate Network Dashboard]]></category>
		<category><![CDATA[WordPress 3.1 Features]]></category>
		<category><![CDATA[WordPress Development Blog]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=357</guid>
		<description><![CDATA[Not too long ago, we were talking about WordPress 3.0, but from the looks of the development track, we are on our way to WordPress 3.1. From the scope, it looks like the new version will be out sometime in mid December 2010. There are some very ex]]></description>
			<content:encoded><![CDATA[Not too long ago, we were talking about WordPress 3.0,  but from the looks of the development track, we are on our way to  WordPress 3.1. From the scope, it looks like the new version will be out  sometime in mid December 2010. There are some very ex]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/new-features-in-wordpress-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to: Related Posts with Thumbnails in WordPress without Plugins</title>
		<link>http://code.24by7info.net/how-to-related-posts-with-thumbnails-in-wordpress-without-plugins/</link>
		<comments>http://code.24by7info.net/how-to-related-posts-with-thumbnails-in-wordpress-without-plugins/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 12:14:40 +0000</pubDate>
		<dc:creator>anki</dc:creator>
				<category><![CDATA[Word Press]]></category>
		<category><![CDATA[Related Posts in page]]></category>
		<category><![CDATA[Related Posts with out plugin]]></category>
		<category><![CDATA[Related Posts with Thumbnails]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Post Thumbnail Function]]></category>

		<guid isPermaLink="false">http://code.24by7info.net/?p=353</guid>
		<description><![CDATA[Related posts can be easily displayed with plugins, but did you ever wonder how you could display related posts with a Thumbnail without using a Plugin? In this article, we will share two different algorithm which you can use to generate related p]]></description>
			<content:encoded><![CDATA[Related posts can be easily displayed with plugins, but did you ever  wonder how you could display related posts with a Thumbnail without  using a Plugin? In this article, we will share two different algorithm  which you can use to generate related p]]></content:encoded>
			<wfw:commentRss>http://code.24by7info.net/how-to-related-posts-with-thumbnails-in-wordpress-without-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

