<?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>WordPress Development Snippets</title>
	<atom:link href="http://wpdevsnippets.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpdevsnippets.com</link>
	<description>Precious WordPress Bits and Pieces</description>
	<lastBuildDate>Thu, 21 Mar 2013 15:35:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Snippet: True in_category Conditional function</title>
		<link>http://wpdevsnippets.com/true-in_category-conditional-function/</link>
		<comments>http://wpdevsnippets.com/true-in_category-conditional-function/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 15:35:56 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[existance]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[subcategory]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1059</guid>
		<description><![CDATA[This is an advanced version of default in_category function. This function not only check for existance of post in the specified categories but also in all the subcategories down in the tree. It has same in_category parameters So you can use it in replacement of in_category.
]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/true-in_category-conditional-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Configure Child Categories to use their Parent Category Template</title>
		<link>http://wpdevsnippets.com/configure-child-categories-parent-category-template/</link>
		<comments>http://wpdevsnippets.com/configure-child-categories-parent-category-template/#comments</comments>
		<pubDate>Mon, 18 Mar 2013 10:16:58 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[subcategory]]></category>
		<category><![CDATA[template hierarchy]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1054</guid>
		<description><![CDATA[WordPress categories follow a predefined template hierarchy. In most cases, we use "category-$slug.php" to override the template for an individual category to give it a entirely different look and functionality ("category-projects.php" for a "Project" category). If you have subcategories (Design, Development etc) of "Project" they also follow the WordPress template hierarchy and you have to create "category-design.php" and "category-development.php" to give them the similar look as of Projects category. This snippet allow you to configure some or all child categories to use their parent's category template. In the scenario we just mentioned above, Design and Development categories will also land at "category-projects.php" instead of their own “category-$slug.php” template.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/configure-child-categories-parent-category-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Additional Links in Plugin Dashboard</title>
		<link>http://wpdevsnippets.com/additional-links-plugin-dashboard/</link>
		<comments>http://wpdevsnippets.com/additional-links-plugin-dashboard/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 12:37:22 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1041</guid>
		<description><![CDATA[Following snippet is specifically for WordPress Plugin developers. It lets the developer add additional links below their plugin descriptions and beside the "Activate" or "Deactivate" links. This is very handy to provide quick links related to your plugin or author.
]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/additional-links-plugin-dashboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Set up a Cron Job in WordPress</title>
		<link>http://wpdevsnippets.com/set-cron-job-wordpress/</link>
		<comments>http://wpdevsnippets.com/set-cron-job-wordpress/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 10:22:34 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[cronjob]]></category>
		<category><![CDATA[schedule]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1039</guid>
		<description><![CDATA[You are normally using your server's Crontab to schedule your cron jobs. If you do not have access to server panel or you do not understand its functionality correctly, you can use WordPress's job scheduling to execute your crons. You can set up cron for hourly execution, daily execution and executing twice in a day. Here is how you can set up hourly and daily jobs.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/set-cron-job-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Enable Shortcodes In Widgets and Post Titles</title>
		<link>http://wpdevsnippets.com/enable-shortcodes-widgets-post-titles/</link>
		<comments>http://wpdevsnippets.com/enable-shortcodes-widgets-post-titles/#comments</comments>
		<pubDate>Wed, 27 Feb 2013 10:10:22 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1030</guid>
		<description><![CDATA[Shortcodes are one of the most popular feature of the WordPress. It allows you to trigger a function within the post contents. We posted number of shortcodes you can use. Couple of builtin shortcodes are &lbrack;gallery&rbrack; and &lbrack;embed&rbrack;.  Unfortunately, shortcodes does not work in text widget where we often like to use them. To enable it, you just need to paste following snippet in your functions.php]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/enable-shortcodes-widgets-post-titles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Add &#8220;alt&#8221; CSS Class to Alternative Posts</title>
		<link>http://wpdevsnippets.com/add-alt-css-class-alternative-posts/</link>
		<comments>http://wpdevsnippets.com/add-alt-css-class-alternative-posts/#comments</comments>
		<pubDate>Mon, 25 Feb 2013 20:11:56 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[css class]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1025</guid>
		<description><![CDATA[If you want to have different look and feel for post one after the another. This snippet will let do that quite easily. It will add "alt" class to alternative posts and you can then change, lets say, background color or border to make it different from the adjacent posts.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/add-alt-css-class-alternative-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linking Image and Title in NextGen Flex Slider Template</title>
		<link>http://wpdevsnippets.com/linking-image-and-title-nextgen-flex-slider-template/</link>
		<comments>http://wpdevsnippets.com/linking-image-and-title-nextgen-flex-slider-template/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 13:34:33 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[content slider]]></category>
		<category><![CDATA[image slider]]></category>
		<category><![CDATA[nextgen]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1009</guid>
		<description><![CDATA[In this tutorial we will show you how you can set up and enable linking of sliders in NextGen Flex Slider Template. You would need to install a NextGen Custom Fields plugin, add a URL custom field, set up links for each image and finally configure Flex Slider to use them]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/linking-image-and-title-nextgen-flex-slider-template/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Snippet: Require Post Thumbnail to be Uploaded Before Publishing</title>
		<link>http://wpdevsnippets.com/require-post-thumbnail-uploaded-before-publishing/</link>
		<comments>http://wpdevsnippets.com/require-post-thumbnail-uploaded-before-publishing/#comments</comments>
		<pubDate>Fri, 15 Feb 2013 13:54:00 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[custom post]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post thumbnail]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=1003</guid>
		<description><![CDATA[This short snippet requires authors and admins to set a post thumbnail before publishing any article. It will update the post and all of its contents but wont publish it until the thumbnail is set. For custom post types, you just need to change the "get_post_type" condition to your custom post type.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/require-post-thumbnail-uploaded-before-publishing/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Full Screen (Page) Background Image Slideshow Plugin</title>
		<link>http://wpdevsnippets.com/full-screen-page-background-image-slideshow-plugin/</link>
		<comments>http://wpdevsnippets.com/full-screen-page-background-image-slideshow-plugin/#comments</comments>
		<pubDate>Fri, 08 Feb 2013 11:48:30 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=980</guid>
		<description><![CDATA[With This WordPress plugin you can add single or multiple backgrounds that spans behind whole website contents. Additionally, you also can enable/disable animation, randomize images for each refresh, set animation duration and delay and add dotted overlay on images.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/full-screen-page-background-image-slideshow-plugin/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Snippet: Media Metabox to add additional images to posts</title>
		<link>http://wpdevsnippets.com/gallery-media-metabox-add-additional-images-posts/</link>
		<comments>http://wpdevsnippets.com/gallery-media-metabox-add-additional-images-posts/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 12:58:21 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[custom post]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[metabox]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=987</guid>
		<description><![CDATA[This snippet adds a gallery metabox where admin can either upload images through WordPress Uploader or put in the image URL directly. This metabox is very useful for the custom post types for which you want to upload multiple images. Some good examples are, real estate properties, work portfolios and store products. All of these would have a featured image and some images to be displayed in a (for example) slider to explain it features and qualities.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/gallery-media-metabox-add-additional-images-posts/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>CSS: Full Page (Screen) Background Image Slideshow: Made Easy</title>
		<link>http://wpdevsnippets.com/full-page-screen-background-image-slideshow-easy/</link>
		<comments>http://wpdevsnippets.com/full-page-screen-background-image-slideshow-easy/#comments</comments>
		<pubDate>Tue, 05 Feb 2013 13:06:19 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[CSS Style]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=972</guid>
		<description><![CDATA[Full screen background image that span all over the browser window is getting much more popular now. It definitely catches visitor's eye and boost the overall design of the website. It looks much more colourful and attractive. Few examples of some awesome looking websites are TeleTech, Vivo Group, Chicago L-Shirts and Fleming Steele. This snippet is not specific to WordPress except that it require jQuery and uses WordPress conventions. Please note that it does not require any jQuery plugin.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/full-page-screen-background-image-slideshow-easy/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Snippet: Phone and Fax Number Validation in Contact Form 7</title>
		<link>http://wpdevsnippets.com/phone-and-fax-number-validation-contact-form-7/</link>
		<comments>http://wpdevsnippets.com/phone-and-fax-number-validation-contact-form-7/#comments</comments>
		<pubDate>Mon, 04 Feb 2013 15:23:22 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[contact form7]]></category>
		<category><![CDATA[custom field]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=965</guid>
		<description><![CDATA[Contact Form 7 is the most simple and straight forward form plugin for WordPress. It has been downloaded nearly 10 million times. It has everything to set up a simple contact form except one thing, that is, validation of a phone or fax number. This short snippet validates phone number by stripping of all non-numeric characters and checking if numeric string is of length 10 digits. ]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/phone-and-fax-number-validation-contact-form-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Widget: Display Future or Upcoming Posts</title>
		<link>http://wpdevsnippets.com/widget-display-future-upcoming-posts/</link>
		<comments>http://wpdevsnippets.com/widget-display-future-upcoming-posts/#comments</comments>
		<pubDate>Wed, 30 Jan 2013 11:18:40 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Widget]]></category>
		<category><![CDATA[custom post]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post type]]></category>
		<category><![CDATA[schedule]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=957</guid>
		<description><![CDATA[This widget allows you to display scheduled posts or custom post type. You can limit number of posts to display and toggle to display thumbnail, link to the post and change the order of the posts.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/widget-display-future-upcoming-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Track Views of Posts, Pages or Custom Post Types without Plugin</title>
		<link>http://wpdevsnippets.com/track-views-posts-custom-post-types-plugin/</link>
		<comments>http://wpdevsnippets.com/track-views-posts-custom-post-types-plugin/#comments</comments>
		<pubDate>Tue, 29 Jan 2013 08:31:25 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[custom post]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post type]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=903</guid>
		<description><![CDATA[This snippet automatically track views of posts, pages and custom post types. You can use get_post_views function having optional $post_id parameter to fetch the number of views of any post, page or custom post type. You can also add "Views" column in admin panel for each post type.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/track-views-posts-custom-post-types-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Widget: All in one Advanced Post Listing Widget</title>
		<link>http://wpdevsnippets.com/advanced-post-listing-widget/</link>
		<comments>http://wpdevsnippets.com/advanced-post-listing-widget/#comments</comments>
		<pubDate>Fri, 25 Jan 2013 15:25:01 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Widget]]></category>
		<category><![CDATA[popular]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post thumbnail]]></category>
		<category><![CDATA[post type]]></category>
		<category><![CDATA[recent]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=924</guid>
		<description><![CDATA[This all in one post listing widget has all the options you can think list your posts or custom post types in sidebar. Either you are planing to show popular or recent or random posts, this widget can fulfil your desire. You can toggle the display of post title, post content, post thumbnail, number of posts and post author line. You can even limit the post content by number of characters and selection of posts from all categories or some of the selected categories.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/advanced-post-listing-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Shortcode for Paypal Pay, Buy, Donation and Cart Buttons</title>
		<link>http://wpdevsnippets.com/wordpress-shortcode-paypal-pay-buy-donation-cart-buttons/</link>
		<comments>http://wpdevsnippets.com/wordpress-shortcode-paypal-pay-buy-donation-cart-buttons/#comments</comments>
		<pubDate>Thu, 24 Jan 2013 14:59:08 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[payment]]></category>
		<category><![CDATA[paypal]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=843</guid>
		<description><![CDATA[This plugin adds "paypal_button" shortcode to display pay now, buy now, donation and add to cart PayPal buttons with facility to customize they paypal checkout page. After installation you would need to set your PayPal E-Mail address, Business Name (for donations) in "Settings-&#62;PayPal Buttons". You can also set you companies logo in PayPal's checkout page . ]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/wordpress-shortcode-paypal-pay-buy-donation-cart-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shortcode: Display Most Popular or Commented Posts</title>
		<link>http://wpdevsnippets.com/display-popular-commented-posts/</link>
		<comments>http://wpdevsnippets.com/display-popular-commented-posts/#comments</comments>
		<pubDate>Thu, 24 Jan 2013 13:55:37 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Shortcode]]></category>
		<category><![CDATA[commented]]></category>
		<category><![CDATA[popular]]></category>
		<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=901</guid>
		<description><![CDATA[Putting some of your older posts in sidebar or on a homepage is a good approach not only for SEO of your blog but also offer interested content to your visitor. You may have hundreds of posts on your blog, you should be showing the ones that has been most popular among the visitors. This shortcode will let you list most commented posts (or any custom post type) from a single category or multiple categories.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/display-popular-commented-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: Enhance Post Editor by Adding Font Family, Size and Styling Row</title>
		<link>http://wpdevsnippets.com/enhance-post-editor-adding-font-family-size-style-row/</link>
		<comments>http://wpdevsnippets.com/enhance-post-editor-adding-font-family-size-style-row/#comments</comments>
		<pubDate>Wed, 23 Jan 2013 09:17:58 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Code Snippet]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[post editing]]></category>
		<category><![CDATA[tinymce]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=892</guid>
		<description><![CDATA[In this tutorial, we will show you a trick to create a new row in post editor giving you ability to change text font family, size, style, converting text to superscript or subscript and adding a horizontal rule. It is pretty simple and straight. ]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/enhance-post-editor-adding-font-family-size-style-row/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create NextGen Gallery and use Gallery Templates</title>
		<link>http://wpdevsnippets.com/create-nextgen-gallery-and-templates/</link>
		<comments>http://wpdevsnippets.com/create-nextgen-gallery-and-templates/#comments</comments>
		<pubDate>Tue, 22 Jan 2013 16:26:02 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[nextgen]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=872</guid>
		<description><![CDATA[A NextGen Gallery is a way of grouping  images. It is a usual practice to create gallery of an event and place all photos of the event in that gallery. You can watermark, resize and rotate any one image or all images in a bulk. You can visit our post on resizing bulk images in a gallery. NextGen provide number of ways to displaying a gallery or an image  through shortcodes. [nggallery] shortcode is the most commonly as it has a pretty handful feature of gallery templates.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/create-nextgen-gallery-and-templates/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>NextGEN 3D and 2D Animated Flux Slider Template</title>
		<link>http://wpdevsnippets.com/nextgen-3d-2d-animated-flux-slider-template/</link>
		<comments>http://wpdevsnippets.com/nextgen-3d-2d-animated-flux-slider-template/#comments</comments>
		<pubDate>Tue, 22 Jan 2013 09:14:54 +0000</pubDate>
		<dc:creator>Mohsin Rasool</dc:creator>
				<category><![CDATA[Plugin]]></category>
		<category><![CDATA[image slider]]></category>
		<category><![CDATA[nextgen]]></category>
		<category><![CDATA[slider]]></category>

		<guid isPermaLink="false">http://wpdevsnippets.com/?p=858</guid>
		<description><![CDATA[This plugin add a "3dfluxsliderview" template for the NextGen gallery. Use the shortcode [nggallery id=x template="3dfluxsliderview"] to display images as cool animated slider. You can visit Settings -&#62; NextGen Slider to select theme, toggle between image and content slider and change width of the image or content area. You can download plugin from WordPress Plugin Repository.]]></description>
		<wfw:commentRss>http://wpdevsnippets.com/nextgen-3d-2d-animated-flux-slider-template/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Database Caching 6/16 queries in 0.019 seconds using disk
Object Caching 1660/1781 objects using disk

 Served from: wpdevsnippets.com @ 2013-06-18 04:33:19 by W3 Total Cache -->