<?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>Bhupendra Kunwar Blog &#124; Internet Marketing Web Dev Professional &#187; General</title>
	<atom:link href="http://www.bhupendra.info/blog/general/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bhupendra.info/blog</link>
	<description>Re-Writing the Web</description>
	<lastBuildDate>Sat, 09 Jul 2011 07:17:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Creating a Custom Post Type in WordPress</title>
		<link>http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress</link>
		<comments>http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress#comments</comments>
		<pubDate>Thu, 07 Jul 2011 13:51:38 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Hacks]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=232</guid>
		<description><![CDATA[Creating a custom post types in WordPress is very simple. All you need to do is register the custom post type. Copy the function below to your theme&#8217;s function.php file The function below adds a custom post type &#8220;Ideas&#8221; with &#8230; <a href="http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Creating a custom post types in WordPress is very simple. All you need to do is register the custom post type.</p>
<p>Copy the function below to your theme&#8217;s function.php file</p>
<p>The function below adds a custom post type &#8220;Ideas&#8221; with the same columns. </p>
<pre class="brush:php">
register_post_type('ideas', array(
	'label' => __('Ideas'),
	'singular_label' => __('Ideas'),
	'public' => true,
	'show_ui' => true,
	'capability_type' => 'post',
	'hierarchical' => false,
	'rewrite' => false,
	'query_var' => false,
	'supports' => array('title', 'editor', 'author')
));
</pre>
<p>If you want to list the posts posted under the custom post type, you can use the query_posts function:</p>
<pre class="brush:php">
query_posts('post_type=ideas')
</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=232&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/creating-a-custom-post-type-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Post Comments on the Homepage Twenty Ten</title>
		<link>http://www.bhupendra.info/blog/show-post-comments-on-the-homepage-twenty-ten</link>
		<comments>http://www.bhupendra.info/blog/show-post-comments-on-the-homepage-twenty-ten#comments</comments>
		<pubDate>Fri, 19 Nov 2010 07:21:57 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=191</guid>
		<description><![CDATA[The Twenty Ten theme uses loop function to show posts on the homepage or category pages. The novice users might find it difficult to work with loop.php If you want to show the list of comments &#038; comment form for &#8230; <a href="http://www.bhupendra.info/blog/show-post-comments-on-the-homepage-twenty-ten">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Twenty Ten theme uses loop function to show posts on the homepage or category pages.</p>
<p>The novice users might find it difficult to work with loop.php</p>
<p>If you want to show the list of comments &#038; comment form for each of the blog posts on the homepage of the blog, just add the following line of code
<pre class="brush:php">global $withcomments; $withcomments = 1;</pre>
<p> just before
<pre class="brush:php">get_template_part( 'loop', 'index' );</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=191&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/show-post-comments-on-the-homepage-twenty-ten/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; Using Shortcodes in Template files</title>
		<link>http://www.bhupendra.info/blog/wordpress-using-shortcodes-in-template-files</link>
		<comments>http://www.bhupendra.info/blog/wordpress-using-shortcodes-in-template-files#comments</comments>
		<pubDate>Sat, 23 Oct 2010 13:00:31 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=186</guid>
		<description><![CDATA[echo do_shortcode('[shortcode]');]]></description>
			<content:encoded><![CDATA[<pre class="brush:php">echo do_shortcode('[shortcode]');</pre>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=186&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/wordpress-using-shortcodes-in-template-files/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Solutions: Add New Custom Field Not Working</title>
		<link>http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working</link>
		<comments>http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working#comments</comments>
		<pubDate>Fri, 06 Nov 2009 07:51:16 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=129</guid>
		<description><![CDATA[If you are having an issue adding a new custom fields in your wordpress blog, here is the possible solution. Problem: Add New Custom Field Doesn&#8217;t Work at all. When you click on &#8220;Add Custom Field&#8221; nothing happens! Solution: Refer &#8230; <a href="http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are having an issue adding a new custom fields in your wordpress blog, here is the possible solution.</p>
<p><strong>Problem</strong>: Add New Custom Field Doesn&#8217;t Work at all. When you click on &#8220;Add Custom Field&#8221; nothing happens!</p>
<p><strong>Solution</strong>: Refer to your Theme&#8217;s Function file (functions.php) located in your theme directory. Remove any blank lines from the file functions.php</p>
<p>It works!</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=129&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/wordpress-solution-add-new-custom-field-not-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highlight the Background of Current Page in WordPress</title>
		<link>http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress</link>
		<comments>http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress#comments</comments>
		<pubDate>Wed, 07 Oct 2009 17:17:11 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.bhupendra.info/blog/?p=117</guid>
		<description><![CDATA[I was stucked finding an easy solution to highlight the background of the current (active) page in wordpress. The solution is however too simple. Just add the following CSS code in your stylesheet (style.css) #menu_id li.current_page_item a{ background:#2E8DE6; } Note: &#8230; <a href="http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was stucked finding an easy solution to highlight the background of the current (active) page in wordpress. The solution is however too simple. Just add the following CSS code in your stylesheet (style.css)</p>
<pre class="brush:css">#menu_id li.current_page_item a{
    background:#2E8DE6;
}
</pre>
<p>Note: Be sure to replace #menu_id with the id of your navigation bar. In this case, the list of my pages is contained in a div with id menu_id</p>
<p><img class="alignnone size-full wp-image-119" style="border:1px solid #000000;" title="highlight-active-page" src="http://www.bhupendra.info/blog/wp-content/uploads/2009/10/highlight-active-page.jpg" alt="highlight-active-page" width="534" height="172" /></p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=117&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/highlight-the-background-of-current-page-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello Web!</title>
		<link>http://www.bhupendra.info/blog/hello-world-2</link>
		<comments>http://www.bhupendra.info/blog/hello-world-2#comments</comments>
		<pubDate>Fri, 18 May 2007 12:52:47 +0000</pubDate>
		<dc:creator>Bhupendra</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://bhupendra.info/blog/?p=4</guid>
		<description><![CDATA[Welcome to BhupendraKunwar.com &#8211; a meeting place for web freaks. The objective of this website would be to encourage the web users- novice web users, web developers, web researchers , web traffickers, web promoters and web masters to contribute some &#8230; <a href="http://www.bhupendra.info/blog/hello-world-2">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Welcome to BhupendraKunwar.com &#8211; a meeting place for web freaks.</p>
<p>The objective of this website would be to encourage the web users- novice web users, web developers, web researchers , web traffickers, web promoters and web masters to contribute some meaningful substance to the web.</p>
<img src="http://www.bhupendra.info/blog/?ak_action=api_record_view&id=4&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.bhupendra.info/blog/hello-world-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

