<?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>WPGist</title>
	<atom:link href="https://wpgist.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://wpgist.com/</link>
	<description>WordPress Gist and Snippets Collection</description>
	<lastBuildDate>Thu, 10 Nov 2016 19:58:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wpgist.com?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">25107131</site>	<item>
		<title>Create a WordPress While Loop</title>
		<link>https://wpgist.com/create-a-wordpress-while-loop/</link>
					<comments>https://wpgist.com/create-a-wordpress-while-loop/#comments</comments>
		
		<dc:creator><![CDATA[Rogger Shaw]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 19:58:42 +0000</pubDate>
				<category><![CDATA[Gists]]></category>
		<guid isPermaLink="false">https://wpgist.com/?p=19</guid>

					<description><![CDATA[<p>List posts in a WordPress while loop. Usage: When you need to create a WordPress Loop, you can create a while loop.</p>
<p>The post <a href="https://wpgist.com/create-a-wordpress-while-loop/">Create a WordPress While Loop</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>List posts in a WordPress while loop.</p>
<p><script src="https://gist.github.com/WPGist/c278c508ff9ad1b92752c9d9919dc525.js"></script></p>
<h3>Usage:</h3>
<p>When you need to create a WordPress Loop, you can create a <code>while</code> loop.</p>
<p>The post <a href="https://wpgist.com/create-a-wordpress-while-loop/">Create a WordPress While Loop</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://wpgist.com/create-a-wordpress-while-loop/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">19</post-id>	</item>
		<item>
		<title>Enqueue WordPress Scripts and Styles</title>
		<link>https://wpgist.com/enqueue-wordpress-scripts-and-styles/</link>
					<comments>https://wpgist.com/enqueue-wordpress-scripts-and-styles/#respond</comments>
		
		<dc:creator><![CDATA[Rogger Shaw]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 19:54:37 +0000</pubDate>
				<category><![CDATA[Gists]]></category>
		<guid isPermaLink="false">https://wpgist.com/?p=17</guid>

					<description><![CDATA[<p>Different ways to enqueue WordPress scripts and styles. Usage: Enqueue scripts and styles from parent or child themes, and even external links.</p>
<p>The post <a href="https://wpgist.com/enqueue-wordpress-scripts-and-styles/">Enqueue WordPress Scripts and Styles</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Different ways to enqueue WordPress scripts and styles.<br />
<script src="https://gist.github.com/WPGist/c44f04656727e9963fc455ea780a160f.js"></script></p>
<h3>Usage:</h3>
<p>Enqueue scripts and styles from parent or child themes, and even external links.</p>
<p>The post <a href="https://wpgist.com/enqueue-wordpress-scripts-and-styles/">Enqueue WordPress Scripts and Styles</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://wpgist.com/enqueue-wordpress-scripts-and-styles/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">17</post-id>	</item>
		<item>
		<title>Get Post Info by Slug</title>
		<link>https://wpgist.com/get-post-info-by-slug/</link>
					<comments>https://wpgist.com/get-post-info-by-slug/#respond</comments>
		
		<dc:creator><![CDATA[Rogger Shaw]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 19:51:49 +0000</pubDate>
				<category><![CDATA[Gists]]></category>
		<guid isPermaLink="false">https://wpgist.com/?p=15</guid>

					<description><![CDATA[<p>Pull the ID first, then you&#8217;ll have access to the post&#8217;s data. Usage: If you only have a post’s slug, you can easily get the ID of it, and than pull that post’s info. Useful for when you can only get a post’s slug, but need to get more info for that post.</p>
<p>The post <a href="https://wpgist.com/get-post-info-by-slug/">Get Post Info by Slug</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Pull the ID first, then you&#8217;ll have access to the post&#8217;s data.</p>
<p><script src="https://gist.github.com/WPGist/28a9131fbb15124c99d1fb61bf1cbf4b.js"></script></p>
<h3>Usage:</h3>
<p>If you only have a post’s slug, you can easily get the ID of it, and than pull that post’s info. Useful for when you can only get a post’s slug, but need to get more info for that post.</p>
<p>The post <a href="https://wpgist.com/get-post-info-by-slug/">Get Post Info by Slug</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://wpgist.com/get-post-info-by-slug/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">15</post-id>	</item>
		<item>
		<title>Get Image URL from Image ID</title>
		<link>https://wpgist.com/get-image-url-from-image-id/</link>
					<comments>https://wpgist.com/get-image-url-from-image-id/#respond</comments>
		
		<dc:creator><![CDATA[Rogger Shaw]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 19:21:40 +0000</pubDate>
				<category><![CDATA[Gists]]></category>
		<guid isPermaLink="false">https://wpgist.com/?p=13</guid>

					<description><![CDATA[<p>Get the URL of an Image by the ID. Usage: If you need to get the URL for a Media Image uploaded, you’ll first need to know the ID of the image. What sucks about this is – with this approach you will either to know the Image ID specifically. There is another way to [&#8230;]</p>
<p>The post <a href="https://wpgist.com/get-image-url-from-image-id/">Get Image URL from Image ID</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Get the URL of an Image by the ID.</p>
<p><script src="https://gist.github.com/WPGist/629227a9b66821b95555b90e8eb786f2.js"></script></p>
<h3>Usage:</h3>
<p>If you need to get the URL for a Media Image uploaded, you’ll first need to know the ID of the image. What sucks about this is – with this approach you will either to know the Image ID specifically. There is another way to get the Image ID dynamically (using ACF).</p>
<p>The post <a href="https://wpgist.com/get-image-url-from-image-id/">Get Image URL from Image ID</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://wpgist.com/get-image-url-from-image-id/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">13</post-id>	</item>
		<item>
		<title>Create a Search Shortcode</title>
		<link>https://wpgist.com/create-a-search-shortcode/</link>
					<comments>https://wpgist.com/create-a-search-shortcode/#respond</comments>
		
		<dc:creator><![CDATA[Rogger Shaw]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 19:07:11 +0000</pubDate>
				<category><![CDATA[Gists]]></category>
		<guid isPermaLink="false">https://wpgist.com/?p=8</guid>

					<description><![CDATA[<p>Add a Search Shortcode to a Page/Post and even in a Template Usage: Add a Search form to your Post Content (Post -&#62; Editor -&#62; Text Tab) or to a template via do_shortcode.</p>
<p>The post <a href="https://wpgist.com/create-a-search-shortcode/">Create a Search Shortcode</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Add a Search Shortcode to a Page/Post and even in a Template</p>
<p><script src="https://gist.github.com/WPGist/f39f66ec84e043d4af8953142d6c9309.js"></script></p>
<h3>Usage:</h3>
<p>Add a Search form to your Post Content (<em>Post -&gt; Editor -&gt; Text Tab</em>) or to a template via <code>do_shortcode</code>.</p>
<p>The post <a href="https://wpgist.com/create-a-search-shortcode/">Create a Search Shortcode</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://wpgist.com/create-a-search-shortcode/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">8</post-id>	</item>
		<item>
		<title>Create a WordPress Foreach Loop</title>
		<link>https://wpgist.com/create-a-wordpress-foreach-loop/</link>
					<comments>https://wpgist.com/create-a-wordpress-foreach-loop/#respond</comments>
		
		<dc:creator><![CDATA[Rogger Shaw]]></dc:creator>
		<pubDate>Thu, 10 Nov 2016 10:47:37 +0000</pubDate>
				<category><![CDATA[Gists]]></category>
		<guid isPermaLink="false">http://wpgist.com/?p=1</guid>

					<description><![CDATA[<p>List posts in a foreach loop. Usage: When you need to create a WordPress Loop, you can create a foreach loop.</p>
<p>The post <a href="https://wpgist.com/create-a-wordpress-foreach-loop/">Create a WordPress Foreach Loop</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>List posts in a foreach loop.</p>
<p><script src="https://gist.github.com/WPGist/ea3171b0e959289ddffba71559a44c47.js"></script></p>
<h3>Usage:</h3>
<p>When you need to create a WordPress Loop, you can create a <code>foreach</code> loop.</p>
<p>The post <a href="https://wpgist.com/create-a-wordpress-foreach-loop/">Create a WordPress Foreach Loop</a> appeared first on <a href="https://wpgist.com">WPGist</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://wpgist.com/create-a-wordpress-foreach-loop/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1</post-id>	</item>
	</channel>
</rss>
