<?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>Interview Questions &#187; Wordpress</title>
	<atom:link href="http://www.phpinterviewquestion.com/category/wordpress_tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://www.phpinterviewquestion.com</link>
	<description>Interview Questions</description>
	<lastBuildDate>Sun, 27 Nov 2011 16:32:28 +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>Top shopping cart wordpress plugins</title>
		<link>http://www.phpinterviewquestion.com/wordpress_tutorials/top-10-shopping-cart-plugins</link>
		<comments>http://www.phpinterviewquestion.com/wordpress_tutorials/top-10-shopping-cart-plugins#comments</comments>
		<pubDate>Thu, 22 Jul 2010 19:40:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[eShop]]></category>
		<category><![CDATA[Top 10 shopping cart wordpress plugins]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=839</guid>
		<description><![CDATA[eShop eShop is an accessible shopping cart plugin for WordPress, packed with various features. Including: Utilises WordPress pages, or posts, to create products enhanced for WP3.0 users &#8211; customers can sign up to your site (settable option) Various methods available for listing products Products can have multiple options Upload downloadable products Basic Statistics Download sales [...]]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/wordpress_tutorials/top-10-shopping-cart-plugins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exclude Categories in Search Results  in wordpress</title>
		<link>http://www.phpinterviewquestion.com/wordpress_tutorials/exclude-categories-in-search-results-in-wordpress</link>
		<comments>http://www.phpinterviewquestion.com/wordpress_tutorials/exclude-categories-in-search-results-in-wordpress#comments</comments>
		<pubDate>Thu, 22 Jul 2010 19:27:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Exclude Categories in Search Results]]></category>
		<category><![CDATA[exclude category]]></category>
		<category><![CDATA[search wordpress]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=835</guid>
		<description><![CDATA[Below is the code to does not show the posts from category 9,14 during search. &#60;?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; $s = get_query_var('s'); query_posts("s=$s&#38;cat=-9,-14&#38;paged=$page"); ?&#62; &#60;?php if (have_posts()) : while (have_posts()) : the_post(); ?&#62; &#60;?php the_title(); ?&#62;&#60;br /&#62;&#60;br /&#62; &#60;?php endwhile;endif;?&#62; &#60;?php next_posts_link('&#38;laquo; Old Updates') ?&#62; &#60;?php previous_posts_link('Latest Updates &#38;raquo;')]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/wordpress_tutorials/exclude-categories-in-search-results-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show child Pages of a specific parent Page</title>
		<link>http://www.phpinterviewquestion.com/php-questions/show-child-pages-of-a-specific-parent-page</link>
		<comments>http://www.phpinterviewquestion.com/php-questions/show-child-pages-of-a-specific-parent-page#comments</comments>
		<pubDate>Fri, 05 Feb 2010 18:37:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Show child Pages of a specific parent Page]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=675</guid>
		<description><![CDATA[you can use below code to show all child of  parent who has id 10. &#60;?php wp_list_cats('child_of=10'); ?&#62; you can also use this &#60;?php wp_list_pages('child_of=10&#38; sort_column=post_title&#38;title_li=')?&#62;]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/php-questions/show-child-pages-of-a-specific-parent-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Show parent page title even on child page</title>
		<link>http://www.phpinterviewquestion.com/php-questions/how-to-show-parent-page-title-even-on-child-page</link>
		<comments>http://www.phpinterviewquestion.com/php-questions/how-to-show-parent-page-title-even-on-child-page#comments</comments>
		<pubDate>Fri, 05 Feb 2010 18:34:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[How to Show parent page title even on child page]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=672</guid>
		<description><![CDATA[&#60;?php if($post-&#62;post_parent) { $parent_title = get_the_title($post-&#62;post_parent); echo $parent_title; } else { wp_title(''); } ?&#62;]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/php-questions/how-to-show-parent-page-title-even-on-child-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Removing The Title Attribute From wp_list_categories &amp; wp_list_pages</title>
		<link>http://www.phpinterviewquestion.com/wordpress_tutorials/removing-the-title-attribute-from-wp_list_categories-wp_list_pages</link>
		<comments>http://www.phpinterviewquestion.com/wordpress_tutorials/removing-the-title-attribute-from-wp_list_categories-wp_list_pages#comments</comments>
		<pubDate>Sat, 23 Jan 2010 20:10:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=661</guid>
		<description><![CDATA[Use  Exact Below code for  categories  and pages. wp_list_categories: &#60;?php $title_free_cats = wp_list_categories(&#8216;echo=0&#8242;); $title_free_cats = preg_replace(&#8216;/title=\&#8221;(.*?)\&#8221;/&#8217;,&#8221;,$]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/wordpress_tutorials/removing-the-title-attribute-from-wp_list_categories-wp_list_pages/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Exclude category from RSS feed in wordpress</title>
		<link>http://www.phpinterviewquestion.com/wordpress_tutorials/exclude-category-from-rss-fee-in-wordpress</link>
		<comments>http://www.phpinterviewquestion.com/wordpress_tutorials/exclude-category-from-rss-fee-in-wordpress#comments</comments>
		<pubDate>Fri, 22 Jan 2010 18:29:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=651</guid>
		<description><![CDATA[To exclude category in wordpress rss feed. you can simple write. &#60;a href="&#60;?php bloginfo('url'); ?&#62;/feed?cat=-1&#38;cat=-2"&#62;(RSS)&#60;/a&#62; or you can simple write below code in your theme function.php to exclude category categories. function excludeCat($query) { if ($query-&#62;is_feed) { $query-&#62;set('cat','-1');// for multiple use with , eg- -1,-2,-3 } return $query; } add_filter('pre_get_posts','excludeCat');]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/wordpress_tutorials/exclude-category-from-rss-fee-in-wordpress/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Enable session in wordpress</title>
		<link>http://www.phpinterviewquestion.com/wordpress_tutorials/enable-session-in-wordpress</link>
		<comments>http://www.phpinterviewquestion.com/wordpress_tutorials/enable-session-in-wordpress#comments</comments>
		<pubDate>Fri, 22 Jan 2010 18:25:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Enable session in wordpress]]></category>

		<guid isPermaLink="false">http://www.phpinterviewquestion.com/?p=649</guid>
		<description><![CDATA[wordpress does not provide the facility to enable session into wordpress. but for enable session in wordpress you need to add add_action(‘init’,&#8217;sessionStart’)); function sessionStart() { if ( ! session_id()) session_start(); } code in your theme  function.php. But you must installed exec-php plugin to enable php code.]]></description>
		<wfw:commentRss>http://www.phpinterviewquestion.com/wordpress_tutorials/enable-session-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.phpinterviewquestion.com @ 2012-02-06 06:54:55 -->
