<?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>Mitch Canter is [studionashvegas] &#187; WordPress</title>
	<atom:link href="http://www.studionashvegas.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.studionashvegas.com</link>
	<description>Nashville, TN&#039;s Best WordPress Designer/Developer</description>
	<lastBuildDate>Thu, 09 Feb 2012 16:28:13 +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>Adding Featured Images to a WordPress Post or RSS Feed</title>
		<link>http://www.studionashvegas.com/tutorial/featured-images-post-rss-feed/</link>
		<comments>http://www.studionashvegas.com/tutorial/featured-images-post-rss-feed/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 15:35:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[featured thumbnail]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=2150</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p><img width="590" height="254" src="http://cdn.studionashvegas.com/wp-content/uploads/2012/02/binary-590x254.jpg" class="attachment-rss-thumbnail wp-post-image" alt="binary" title="binary" style="margin:0; border: 10px solid #202020" />Every post on this blog has a &#8220;featured image&#8221; &#8211; the last few have been screenshots of my blog for the]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p><img width="590" height="254" src="http://cdn.studionashvegas.com/wp-content/uploads/2012/02/binary-590x254.jpg" class="attachment-rss-thumbnail wp-post-image" alt="binary" title="binary" style="margin:0; border: 10px solid #202020" /><p>Every post on this blog has a &#8220;featured image&#8221; &#8211; the last few have been screenshots of my blog for the various tutorials I&#8217;ve been writing or a photo of the BlogWorld banner to talk about my speaking acceptance, but the one thing that always bothered me was that any time you used a featured image it wouldn&#8217;t show up (by default) in your theme or RSS feed.  Featured images make inserting graphics dummy-proof; the size is set automatically and all you have to do is hit upload &#8211; it takes care of all of the re-sizing for you.</p>
<h3>Setting Up Featured Images</h3>
<p>For those of you who do not use featured images in your site, it&#8217;s fairly straight-forward.  A few simple lines of code in your functions.php file and you&#8217;ll see the new option added to your writing screen:</p>
<pre class="qoate-code">

add_theme_support( 'post-thumbnails' );
add_image_size( 'blog-thumbnail', 290, 133, true ); // Permalink thumbnail size
add_image_size( 'single-thumbnail', 610, 263, true ); // Permalink thumbnail size
add_image_size( 'rss-thumbnail', 590, 254, true ); // Permalink thumbnail size
</pre>
<p>These sizes are what I use for my own blog.  There&#8217;s three custom image sizes set: one for the blogroll page (two column), one for the single article or portfolio entry, and one that&#8217;s a little smaller for my RSS-driven newsletter (more on that in a bit).</p>
<h3>Inserting a Featured Image Into a Post</h3>
<p>The concept remains the same no matter what page template you&#8217;re working on, but my single.php page contains this code:</p>
<pre class="qoate-code">

&lt;span class="single-thumbnail"&gt;
&lt;?php if ( has_post_thumbnail() ) { the_post_thumbnail( 'single-thumbnail'); } else { ?&gt;
&lt;img src="&lt;?php bloginfo('template_directory'); ?&gt;/images/large-default.jpg" /&gt;
&lt;?php } ?&gt;
&lt;/span&gt;
</pre>
<p>Now, what I&#8217;ve done here is fairly complex looking, but it&#8217;s actually simple to understand.  The IF statement checks to see if a featured thumbnail has been set.  If so, it displays the predetermined size (in this case, single-thumbnail).  If not, it falls back to a default image and displays it instead.  The span tag allows even the default image to be styled as I want it to (on this blog, it&#8217;s a 10px solid stroke).</p>
<p>Drop this in anywhere between your IF_POSTS and ENDIF tags, and you should be good to go.</p>
<h3>Inserting a Featured Image Into an RSS Feed</h3>
<p>Unfortunately, unlike the template, there&#8217;s not a file you can edit to add things to your RSS feed.  You have to do it via your functions.php file since editing core files is against best practices.  However, it&#8217;s fairly straightforward:</p>
<pre class="qoate-code">

function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post-&gt;ID ) ){
$content = '' . get_the_post_thumbnail( $post-&gt;ID, 'rss-thumbnail', array( 'style' =&gt; 'margin:0; border: 10px solid #202020' ) ) . '' . $content;
}
return $content;
}

add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');
</pre>
<p>This creates a new function &#8216;featuredtoRSS&#8217; and adds it to the $content variable defined in $post by WordPress.  In other words, it appends your featured thumbnail onto already created content, appending it to the end of &#8220;the_excerpt_rss&#8221; and &#8220;the_content_feed&#8221; rss tags. Now, if you refresh your feed, you&#8217;ll see your nice thumbnails showing up for all to see (and it keeps you from having to actually insert photos into your site).</p>
<h3>&#8220;But Mitch, I Have Lots of Images Already &#8211; Do I Have To Reload Them All To Get The New Sizes?&#8221;</h3>
<p>No!  That&#8217;s the joy of plugins.  Download and install Viper007Bond&#8217;s &#8220;<a title="Regenerate Thumbnails" href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" target="_blank">Regenerate Thumbnails</a>&#8221; plugin and run the script.  It&#8217;ll take a few minutes if you have a lot of photos, but it will create photos for every size imaginable (or at least defined in your functions.php file)</p>
<p><a title="Regenerate Thumbnails" href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" target="_blank">Learn More About Regenerate Thumbnails</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/tutorial/featured-images-post-rss-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building a Portfolio With Custom Post Types / Taxonomies: Enhancing The Archive</title>
		<link>http://www.studionashvegas.com/tutorial/custom-post-type-portfolio-archive-enhancement/</link>
		<comments>http://www.studionashvegas.com/tutorial/custom-post-type-portfolio-archive-enhancement/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 16:37:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[custom post type]]></category>
		<category><![CDATA[custom taxonomy]]></category>
		<category><![CDATA[portfolio in WordPress]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=2142</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p><img width="338" height="254" src="http://cdn.studionashvegas.com/wp-content/uploads/2012/02/photo-2.jpg" class="attachment-rss-thumbnail wp-post-image" alt="photo (2)" title="photo (2)" style="margin:0; border: 10px solid #202020" />Yesterday we finished our portfolio, built with a custom post type, three taxonomies, and some custom field information]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p><img width="338" height="254" src="http://cdn.studionashvegas.com/wp-content/uploads/2012/02/photo-2.jpg" class="attachment-rss-thumbnail wp-post-image" alt="photo (2)" title="photo (2)" style="margin:0; border: 10px solid #202020" /><p>Yesterday we finished our portfolio, built with a custom post type, three taxonomies, and some custom field information that we can use to display lots of data about our pieces.  Today is a bonus; we&#8217;ve got all these really cool taxonomies, but no way to really browse the portfolio based on a specific term.</p>
<ul>
<li><span style="color: #999999;">Create the Post Type (done yesterday)</span></li>
<li><span style="color: #999999;">Create The Taxonomies (Color Scheme [tag based], Work Done, WordPress Functionality Used) (done yesterday)</span></li>
<li><span style="color: #999999;">Create Archive / Single pages for post type</span></li>
<li><span style="color: #999999;">Create Meta Box</span></li>
<li><span style="color: #999999;">Assign Meta Box Data to Single Page</span></li>
<li>Assign Taxonomy Data to Archive Page</li>
<li>Add Taxonomy Title to Fallback Archives</li>
</ul>
<p>Once this is done, your portfolio will be browsable, functional, and look pretty awesome too!</p>
<h3>Adding Taxonomy Data to the Archive Pages</h3>
<p>When you visit a single portfolio entry, you&#8217;ll remember now we have all of that information on the right side.  We want to do something similar for the main archive page, and all subsequent taxonomy archive pages, but showing <strong>all</strong> of the options to choose from.</p>
<p>There&#8217;s three taxonomies, but what fun is it to just show a bulleted list for every taxonomy?  Let&#8217;s turn one of them into a drop-down menu.</p>
<pre class="qoate-code">

function get_terms_dropdown($taxonomies, $args){
$myterms = get_terms($taxonomies, $args);
$output ="&lt;select name='wordpress_functionality'&gt;";
$output .="&lt;option value='#'&gt; &lt;/option&gt;";
foreach($myterms as $term){
$root_url = get_bloginfo('url');
$term_taxonomy=$term-&gt;taxonomy;
$term_slug=$term-&gt;slug;
$term_name =$term-&gt;name;
$link = $term_slug;
$output .="&lt;option value='".$link."'&gt;".$term_name."&lt;/option&gt;";
}
$output .="&lt;/select&gt;";
return $output;
}
</pre>
<p>Make sure to change the value to match the one you want to showcase.</p>
<p>Next, we&#8217;ll head over to sidebar.php.  Drop this into your sidebar:</p>
<pre class="qoate-code">

&lt;!--portfolio archive widgets--&gt;
&lt;?php if ( 'portfolio' == get_post_type() &amp;&amp; is_archive() ) { ?&gt;
&lt;li class="widget"&gt;
&lt;h4 class="widgettitle"&gt;Browse Portfolio&lt;/h4&gt;
&lt;h5&gt;Work Done&lt;/h5&gt;
&lt;ul&gt;&lt;?php wp_list_categories('taxonomy=work_done&amp;title_li='); ?&gt;&lt;/ul&gt;
&lt;h5&gt;WordPress Functionality&lt;/h5&gt;
&lt;form action="&lt;?php bloginfo('url'); ?&gt;" method="get"&gt;
&lt;?php
$taxonomies = array('wordpress_functionality');
$args = array('orderby'=&gt;'name','hide_empty'=&gt;true);
$select = get_terms_dropdown($taxonomies, $args);

$select = preg_replace("#&lt;select([^&gt;]*)&gt;#", "&lt;select$1 onchange='return this.form.submit()'&gt;", $select);
echo $select;
?&gt;
&lt;noscript&gt;&lt;div&gt;&lt;input type="submit" value="Go" /&gt;&lt;/div&gt;&lt;/noscript&gt;
&lt;/form&gt;
&lt;h5&gt;By Color:&lt;/h5&gt;
&lt;ul&gt;&lt;?php wp_list_categories('taxonomy=color_scheme&amp;title_li='); ?&gt;&lt;/ul&gt;
&lt;/li&gt;
&lt;?php } ?&gt;
</pre>
<p>There are three sections: the Work Done section, the WordPress Functionality section (our drop-down), and Color Scheme.  I&#8217;m using wp_list_categories to pull a bulleted list for each of the taxonomies, and the form in the middle is the drop down for the functionality section.  By wrapping it in a conditional tag we ensure it only shows up 1) on the portfolio pages and 2) only when displaying an archive.</p>
<p>However, we still have one problem: None of the archive templates (typically) make arrangements for custom taxonomies.  Let&#8217;s fix that.</p>
<h3>Add Taxonomy Title to Fallback Archives</h3>
<p>Edit your archive.php and add this in just before the &lt;?php while (have_posts()) : the_post(); ?&gt;  line:</p>
<pre class="qoate-code">

&lt;?php if( is_tax() ) {
global $wp_query;
$term = $wp_query-&gt;get_queried_object();
$title = $term-&gt;name; ?&gt;
&lt;h2 class="pagetitle"&gt;&lt;?php echo $title ?&gt;&lt;/h2&gt;
&lt;?php } ?&gt;
</pre>
<p>This will display your term&#8217;s name as the page title.</p>
<h3>Wrapping It Up</h3>
<p>And that&#8217;s it!  We&#8217;ve created our portfolio, added templates to customize it, set up the taxonomies to sort our data, and provided a means to display that data on both the single and archive portfolio pages.  Obviously these can be tweaked to your specifications, but I&#8217;ve found a lot of utility in having the data searchable and browsable in many different ways.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/tutorial/custom-post-type-portfolio-archive-enhancement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress BootCamp: Categories vs Tags</title>
		<link>http://www.studionashvegas.com/wordpress-bootcamp/wordpress-bootcamp-categories-vs-tags/</link>
		<comments>http://www.studionashvegas.com/wordpress-bootcamp/wordpress-bootcamp-categories-vs-tags/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 21:38:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress BootCamp]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[taxonomy]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=1660</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/wordpress-bootcamp/" title="WordPress BootCamp">WordPress BootCamp</a></p>This is the second post of Mitch Canter&#8217;s &#8220;WordPress BootCamp&#8221; series&#8230; it showcases the ins]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/wordpress-bootcamp/" title="WordPress BootCamp">WordPress BootCamp</a></p><p><em>This is the second post of Mitch Canter&#8217;s &#8220;WordPress BootCamp&#8221; series</em>&#8230; <em>it showcases the ins and outs of WordPress to new users, and highlights some of the more popular (and some overlooked) features that make WordPress fantastic.  You can catch all of the posts <a title="WordPress Bootcamp Archive" href="http://www.studionashvegas.com/category/wordpress-bootcamp/">here</a>.</em></p>
<p>I get a lot of questions on this: &#8220;What&#8217;s the difference between a category and a tag?&#8221; &#8220;How many categories should I use?&#8221; &#8220;Are tags the same as keywords? Are they meta keywords?&#8221; So I want to give you guys the 4-1-1 on what this is all about.</p>
<p>First of all, both categories and tags are what we refer to as a Taxonomy, which is just a fancy way of saying &#8220;This is how we sort stuff&#8221;.  The term taxonomy is important to WordPress because (aside from categories and tags) you can create other taxonomies through WordPress.  They&#8217;re there to serve one purpose &#8211; to sort your content into topics or by keyword.</p>
<p>Which brings me to the main differences between them:</p>
<h2>Categories</h2>
<p>Think of categories as general topics.  If you categorize your posts into meals you&#8217;ve eaten, places you&#8217;ve seen, and your favorite songs, it would be &#8220;Food&#8221;, &#8220;Travel&#8221;, and &#8220;Music&#8221;, respectively. You don&#8217;t want to have too many topics per blog post, but typically 2-4 is a good number.</p>
<h2>Tags</h2>
<p>Tags are your specific keywords.  To the aforementioned posts above, your meals could be tagged with &#8220;pepperoni pizza&#8221; and &#8220;pasta alfredo&#8221;, your travel split into &#8220;Rome, Italy&#8221; and &#8220;Paris, France&#8221;, and your music sorted by &#8220;Relient K&#8221; and &#8220;Switchfoot&#8221;.  Basically you sort the topics down into it&#8217;s least common denominators.  Once again, pick out the top 5-7 keywords in your post and use those as tags &#8211; you should be get the point across pretty easily of your post simply by looking at the tags.</p>
<h2>On Subcategories</h2>
<p>It&#8217;s true that you can sub-categorize your posts, but do that only if the topic is so broad that it requies a bit of funneling down.  I use &#8220;Conferences&#8221; as a category on my own blog, but I also have it broken down to specific types of conferences (WordCamps, BarCamps, BlogWorld, etc) for ease of finding later</p>
<h2><a href="http://cdn.studionashvegas.com/wp-content/uploads/2011/10/categories-and-tags.png" rel="shadowbox[sbpost-1660];player=img;"><img class="alignleft size-full wp-image-1662" title="categories-and-tags" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/10/categories-and-tags.png" alt="" width="160" height="123" /></a>Categories and Tags are NOT Permanent</h2>
<p>You can change them &#8211; very easily, in fact.  By simply going to the Tags and Categories section of the Posts sub-menu in WordPress, you can log in and change all of the details, even down to the permalink that is displayed when people are looking at the archives.</p>
<p>Reformatting your posts into new categories and posts is easy as well &#8211; you can do it individually by editing the post, or you can check and &#8220;Bulk Edit&#8221; the posts in the All Posts sub-section and categorize as you need to.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/wordpress-bootcamp/wordpress-bootcamp-categories-vs-tags/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress BootCamp: Setting a Static Front Page</title>
		<link>http://www.studionashvegas.com/wordpress-bootcamp/wordpress-bootcamp-setting-a-static-front-page/</link>
		<comments>http://www.studionashvegas.com/wordpress-bootcamp/wordpress-bootcamp-setting-a-static-front-page/#comments</comments>
		<pubDate>Wed, 05 Oct 2011 18:59:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress BootCamp]]></category>
		<category><![CDATA[static front page]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress bootcamp]]></category>
		<category><![CDATA[wpbootcamp]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=1652</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/wordpress-bootcamp/" title="WordPress BootCamp">WordPress BootCamp</a></p><img width="290" height="133" src="http://cdn.studionashvegas.com/wp-content/uploads/2012/01/default.jpg" class="attachment-rss-thumbnail wp-post-image" alt="default" title="default" style="margin:0; border: 10px solid #202020" />If you're new to WordPress, you may be wondering how in the world WordPress could be anything more than a simple blog. ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/wordpress-bootcamp/" title="WordPress BootCamp">WordPress BootCamp</a></p><img width="290" height="133" src="http://cdn.studionashvegas.com/wp-content/uploads/2012/01/default.jpg" class="attachment-rss-thumbnail wp-post-image" alt="default" title="default" style="margin:0; border: 10px solid #202020" /><p><em>This is the first post of Mitch Canter&#8217;s &#8220;WordPress BootCamp&#8221; series</em>&#8230; <em>it showcases the ins and outs of WordPress to new users, and highlights some of the more popular (and some overlooked) features that make WordPress fantastic.</em></p>
<p>If you&#8217;re new to WordPress, you may be wondering how in the world WordPress could be anything more than a simple blog.  Don&#8217;t get me wrong, WordPress does blogging <strong>well</strong>, but it&#8217;s so much more than that.  The problem is most people don&#8217;t know how to take the bare WordPress install and make it shine &#8211; not as a blog, but as a real website.</p>
<p>There&#8217;s one simple trick you can use: set up a static page as the front page of your site.</p>
<h2>Step 1: Create Your Pages</h2>
<p>You&#8217;ll want to create two pages here: Home (or Front, or whatever you want to call it) and Blog (news, articles, etc &#8211; pick your pleasure). As you create your Home page, you can add in whatever content you want.  Don&#8217;t add anything to the blog page &#8211; it&#8217;s going to just be used as a placeholder.  Remember what you&#8217;ve called them &#8211; you&#8217;ll need them in the next section.</p>
<p><a href="http://cdn.studionashvegas.com/wp-content/uploads/2011/10/create-pages.png" rel="shadowbox[sbpost-1652];player=img;"><img class="alignnone size-full wp-image-1654" title="create-pages" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/10/create-pages.png" alt="" width="372" height="302" /></a></p>
<h2>Step 2: Set Up The Options</h2>
<p>Once that&#8217;s done, go to your Appearance &gt; Reading tab in the backend.  Look for the radio buttons next to &#8220;Front Page Displays&#8221; &#8211; that&#8217;s where you&#8217;ll choose &#8220;A static page&#8221; and then select them below.</p>
<p><a href="http://cdn.studionashvegas.com/wp-content/uploads/2011/10/front-page-image.png" rel="shadowbox[sbpost-1652];player=img;"><img class="alignnone size-full wp-image-1655" title="front-page-image" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/10/front-page-image.png" alt="" width="541" height="251" /></a></p>
<p>And that&#8217;s it &#8211; it&#8217;s pretty simple, but it allows you to take one more step to turning a simple WordPress blog into a full blown content managed site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/wordpress-bootcamp/wordpress-bootcamp-setting-a-static-front-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 5 Things to Do After Installing Your New WordPress Blog</title>
		<link>http://www.studionashvegas.com/tutorial/top-5-things-to-do-after-installing-wordpress/</link>
		<comments>http://www.studionashvegas.com/tutorial/top-5-things-to-do-after-installing-wordpress/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 15:21:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=1627</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p>So you&#8217;ve gotten your new website up and ready to go &#8211; and you&#8217;re chomping at the bit to add some delicious]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p><p>So you&#8217;ve gotten your new website up and ready to go &#8211; and you&#8217;re chomping at the bit to add some delicious content.  But don&#8217;t jump the gun just yet &#8211; there&#8217;s a few things you need to do before you start releasing your new site to the masses.</p>
<h2>1. Change your Permalinks</h2>
<p>Right now when people try to view your blog all they see is your URL and a string of numbers &#8211; hardly appealing to your readers, or to the search engines.  It&#8217;s dead simple to change them.  Just go into your Settings &gt; Permalinks page and either select one of the options or enter your own.  I prefer &#8220;category/postname&#8221; but everyone has their own preferred method.</p>
<p><img class="alignnone size-full wp-image-1632" title="permalinks1" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/09/permalinks11.png" alt="" width="143" height="321" /><img class="size-full wp-image-1629 alignnone" title="permalinks2" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/09/permalinks2.png" alt="" width="620" height="321" /></p>
<h2>2. Change your Admin Password</h2>
<p>You DID use a different admin account other than &#8220;admin&#8221; right?  If you use admin as your username, you are giving hackers 50% of the information they need to log into your site.  Do yourself a favor: use a different username and pick a great password.  And change it often.  Already created that &#8220;admin&#8221; account?  Simply create a new one (NOT named admin), give it administrator privileges, and delete your admin account.  You can migrate your posts over to the new user in one go.</p>
<p><img class="alignnone size-full wp-image-1633" title="username2" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/09/username2.png" alt="" width="445" height="240" /></p>
<h2>3. Rename your Default Category</h2>
<p>Uncategorized is not a category &#8211; it&#8217;s a sign that you don&#8217;t care enough to sort your content.  Do yourself a favor and rename that to whatever you want (news, personal, etc.).  Make sure it&#8217;s relevant to the topic at hand.  If you&#8217;ve already posted into the category, no problem!  All the changes are retroactive, so anything new will be added to the right category automatically, and any old posts will be transferred over.  Simply go to Posts &gt; Categories and edit the category you choose.  Make sure to edit both the category name and the slug (the url base for that category).</p>
<p>As a bonus tip, if you want  a cool way to showcase some content on your category archives, you can add <em>&lt;?php echo category_description(); ?&gt; </em>to your archive pages &#8211; then you can add descriptions to further focus your SEO and give your readers an intro to each category.</p>
<p><img class="alignnone size-full wp-image-1634" title="slug1" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/09/slug1.png" alt="" width="490" height="238" /></p>
<h2>4. Change your Title / Description</h2>
<p>I  can&#8217;t tell you how many RSS feeds I visit that have &#8220;Just Another WordPress Blog&#8221; as their description &#8211; or even worse, nothing!  Make sure it&#8217;s relevant to your topic.  You can change it under Settings &gt; General.</p>
<p><img class="alignnone size-full wp-image-1635" title="name1" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/09/name1.png" alt="" width="547" height="130" /></p>
<h2>5. Add In Some Fun Plugins</h2>
<ul>
<li><a title="Livefyre" href="http://wordpress.org/extend/plugins/livefyre-comments/" target="_blank">Livefyre</a> &#8211; Social Commenting System</li>
<li><a title="All In One SEO" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/" target="_blank">All In One SEO</a> / <a title="WordPress SEO by Yoast" href="http://wordpress.org/extend/plugins/wordpress-seo/" target="_blank">Yoast SEO</a> &#8211; for&#8230; uh&#8230; SEO</li>
<li><a title="Google Analyticator" href="http://wordpress.org/extend/plugins/google-analyticator/" target="_blank">Google Analyticator</a> &#8211; Google Analytics</li>
<li><a title="Woopra" href="http://wordpress.org/extend/plugins/woopra/" target="_blank">Woopra</a> &#8211; Woopra Analytics</li>
<li><a title="Digg Digg" href="http://wordpress.org/extend/plugins/digg-digg/" target="_blank">Digg Digg</a> / SexyBookmarks &#8211; social sharing</li>
<li><a title="Google XML Sitemaps" href="http://wordpress.org/extend/plugins/google-sitemap-generator/" target="_blank">Google XML Sitemaps</a> &#8211; creates a crawlable sitemap for Google</li>
<li><a title="Shadowbox JS" href="http://wordpress.org/extend/plugins/shadowbox-js/" target="_blank">Shadowbox JS</a> &#8211; allows javascript click-to-view-larger-image capabilities</li>
<li><a title="W3 Total Cache" href="http://wordpress.org/extend/plugins/w3-total-cache/" target="_blank">W3 Total Cache</a> &#8211; caches site and allows for faster load times</li>
<li><a title="WPTouch" href="http://wordpress.org/extend/plugins/wptouch/" target="_blank">WP Touch</a> &#8211; mobile optimized site</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/tutorial/top-5-things-to-do-after-installing-wordpress/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Westward, Ho!  (aka, It&#8217;s Nearly BlogWorld LA) [#bweny]</title>
		<link>http://www.studionashvegas.com/conferences/westward-ho-aka-its-nearly-blogworld-la-bweny/</link>
		<comments>http://www.studionashvegas.com/conferences/westward-ho-aka-its-nearly-blogworld-la-bweny/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 19:33:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[BlogWorldExpo]]></category>
		<category><![CDATA[Conferences]]></category>
		<category><![CDATA[airbnb]]></category>
		<category><![CDATA[blogworld]]></category>
		<category><![CDATA[bwela]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=1615</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/blogworldexpo/" title="BlogWorldExpo">BlogWorldExpo</a><a href="http://www.studionashvegas.com/category/conferences/" title="Conferences">Conferences</a></p>Get. Stinking. Excited.
It&#8217;s that time again &#8211; as if BlogWorld New York wasn&#8217;t awesome enough, now]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/blogworldexpo/" title="BlogWorldExpo">BlogWorldExpo</a><a href="http://www.studionashvegas.com/category/conferences/" title="Conferences">Conferences</a></p><p><a href="http://cdn.studionashvegas.com/wp-content/uploads/2011/08/5787466330_a4172b61af_b.jpg" rel="shadowbox[sbpost-1615];player=img;"><img class="alignright size-medium wp-image-1616" title="BlogWorldExpo" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/08/5787466330_a4172b61af_b-199x300.jpg" alt="Image Credit: Blogworld Photo Reel" width="199" height="300" /></a>Get. Stinking. Excited.</p>
<p>It&#8217;s that time again &#8211; as if BlogWorld New York wasn&#8217;t awesome enough, now I&#8217;m getting a double dose of awesomeness &#8211; west coast style.</p>
<p>I just got my acceptance email stating that I will be speaking at BlogWorldLA.  It&#8217;s November 3-5 at the LA Convention Center, and if it&#8217;s even HALF as awesome as New York was, it&#8217;s going to be a conference worth going to (hint: it&#8217;s going to be even better than NY, I can tell!)</p>
<p>I&#8217;m doing something different this trip: instead of staying in an expensive hotel, I&#8217;ve booked a room with someone else.  I used <a title="airbnb" href="http://www.airbnb.com">airbnb</a> to find a private room near the convention center.  I found <a title="Shelly's Apartment" href="http://www.airbnb.com/rooms/182621">Shelly&#8217;s apartment</a>, and she&#8217;s letting me crash there for the few days I&#8217;m around.  It&#8217;s just under a mile from the center, but at $55 / night, I can afford the walk (and it&#8217;s good exercise!) or take a cab (because I&#8217;m lazy!).</p>
<p>I&#8217;ve never done anything like room sharing before, but I&#8217;m always willing to try something new, and I&#8217;ve heard great things about airbnb, so I&#8217;m going to take a chance on it.  Shelly&#8217;s already contacted me about the reservation, so I&#8217;m pretty sure my hostess will be fantastic.</p>
<p>At any rate, I&#8217;ll be speaking on WordPress (as per usual) and making the most out of a WordPress blog.  I&#8217;m going to do it a bit differently though, so look to this blog for feedback on what to cover and things of that nature.</p>
<p>Here&#8217;s to a fantastic end to the year&#8217;s conferences with Blogworld!</p>
<p>(PS: If you want to <a title="Attend BlogWorld" href="http://www.shareasale.com/r.cfm?b=286886&amp;u=360110&amp;m=13821&amp;urllink=&amp;afftrack=" target="_blank">attend BlogWorld</a>, then by all means <a title="Best Decision Ever." href="http://www.shareasale.com/r.cfm?b=286886&amp;u=360110&amp;m=13821&amp;urllink=&amp;afftrack=" target="_blank">do it!</a> &#8211; it&#8217;s worth every penny to go, and they&#8217;re discounted until September 21st!)</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/conferences/westward-ho-aka-its-nearly-blogworld-la-bweny/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to set up multiple “layouts” in a post loop (a la TechCrunch)</title>
		<link>http://www.studionashvegas.com/wordpress/how-to-set-up-multiple-layouts-in-a-post-loop-a-la-techcrunch/</link>
		<comments>http://www.studionashvegas.com/wordpress/how-to-set-up-multiple-layouts-in-a-post-loop-a-la-techcrunch/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 14:18:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[more fields]]></category>
		<category><![CDATA[post layouts]]></category>
		<category><![CDATA[TechCrunch]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=1578</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/wordpress/" title="WordPress">WordPress</a></p>I’ve seen a lot of hateful comments on TechCrunch regarding their new design.  I’m going to officially go on-record]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/wordpress/" title="WordPress">WordPress</a></p><p>I’ve seen a lot of hateful comments on TechCrunch regarding their new design.  I’m going to officially go on-record and say that (from a design standpoint) I <strong>really</strong> like where they’re going with the new style.  But, beyond that, under the surface, there’s a few other things that appear to be going on (I say appear because I don’t have access to the backend system, so I can’t tell you exactly what’s going on) that are fantastic uses of new WordPress technology.  My favorite thing, however, is the use of multiple “post layouts” on their archive/index pages.</p>
<p><a href="http://cdn.studionashvegas.com/wp-content/uploads/2011/07/TechCrunch.png" rel="shadowbox[sbpost-1578];player=img;"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" title="TechCrunch" src="http://cdn.studionashvegas.com/wp-content/uploads/2011/07/TechCrunch_thumb.png" alt="TechCrunch" width="579" height="810" border="0" /></a></p>
<p>I think TechCrunch has stumbled onto something that I may use in future designs.  If you scroll down their home page, their articles are differentiated between two or three different layouts (I count two so far, other than a third that I’ll mention specifically in a minute).</p>
<p>Looking at the photo above, those are both in the same loop, but have completely different layouts.  I <strong>love</strong> this idea.  It gives a bit of depth to the site and allows the author to customize the article for his/her own style.</p>
<p>That said, it’s super easy to do something like this in your own blog.</p>
<h3></h3>
<h3>The Code</h3>
<p>First thing’s first – if you’re like me, you love using great plugins, so download the “More Fields” plugin and create yourself a new write panel in the options menu.  There are plenty of tutorials on how to do this, but the end result should be a write panel with a drop down menu and two options (We’ll call them layout 1 and layout 2 with values of layout1 and layout2 respectively). Your meta key can be called whatever you want – mine will be “layout” for ease of use.</p>
<p>Next, we’re going to split the loop up into two different pieces – one for layout1, and one for layout2  (this is a very simplified layout, mind you).  We first have to define a variable for our custom field data (handled via a handy-dandy drop down).  Then, we can use IF THEN statements to get the data based on which value is passed:</p>
<p><span style="font-family: 'Courier New';">&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;?php $snvlayout = get_post_meta($post-&gt;ID, &#8216;layout&#8217;, true) ?&gt;<br />
&lt;?php if ($snvlayout == &#8220;layout1&#8243;) { ?&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;!&#8211;LOOP STYLE 1 GOES HERE&#8211;&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;?php } else { ?&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;!&#8211;LOOP STYLE 2 GOES HERE&#8211;&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;?php } ?&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;?php endwhile; ?&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;div class=&#8221;navigation&#8221;&gt;<br />
&lt;div class=&#8221;alignleft&#8221;&gt;&lt;?php next_posts_link(&#8216;&amp;laquo; Older Entries&#8217;) ?&gt;&lt;/div&gt;<br />
&lt;div class=&#8221;alignright&#8221;&gt;&lt;?php previous_posts_link(&#8216;Newer Entries &amp;raquo;&#8217;) ?&gt;&lt;/div&gt;<br />
&lt;/div&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;?php else : ?&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;h2 class=&#8221;center&#8221;&gt;Not Found&lt;/h2&gt;<br />
&lt;p class=&#8221;center&#8221;&gt;Sorry, but you are looking for something that isn&#8217;t here.&lt;/p&gt;</span></p>
<p><span style="font-family: 'Courier New';">&lt;?php endif; ?&gt;</span></p>
<p>Once again, this is more to show you where the new code is going – everyone’s loop styles will be different.  Combine this with Post Formats (like TechCrunch’s third style – the status update) and you can showcase all sorts of post styles – all without leaving the comfort of your post loop.</p>
<p>These loops also translate over to single posts, archive pages, and any other style you need.  Want a drop down menu that will control a full column vs standard page layout?  Doable with this code – and a few modifications.  The possibilities are endless!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/wordpress/how-to-set-up-multiple-layouts-in-a-post-loop-a-la-techcrunch/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WordPress Needs iOS Enthusiasts</title>
		<link>http://www.studionashvegas.com/development/wordpress-needs-ios-enthusiasts/</link>
		<comments>http://www.studionashvegas.com/development/wordpress-needs-ios-enthusiasts/#comments</comments>
		<pubDate>Mon, 27 Jun 2011 18:40:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[Tumblr]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/development/wordpress-needs-ios-enthusiasts/</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/development/" title="Development">Development</a></p>There was a post titled (albeit linkbatingly) “Tumblr is Killing WordPress” on the Smedio blog about a week ago. ]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/development/" title="Development">Development</a></p><p>There was a post titled (albeit linkbatingly) “<a href="http://smedio.com/2011/06/21/tumblr-is-killing-wordpress/">Tumblr is Killing WordPress</a>” on the Smedio blog about a week ago.  The comments have kept coming in one by one, with the majority of commenters showing their support for WordPress.  However, one comment that came up struck me as sort of telling on how the story stands thus far:</p>
<blockquote><p><em>From Matthew:</em></p>
<p><em>I agree. But where WordPress fails in comparison to Tumblr is in ease of publishing. <strong>While I can enable WP to be Tumbl-like, I still can&#8217;t use the official iOS app to post using those post formats. The Tumblr app supports these formats with ease. </strong>While I wish I could export the content, it&#8217;s a minor issue because of the to how easily I can create said content.</em></p></blockquote>
<p>And you know what? I agree. (at least with the bold statement above &#8211; the rest&#8230; eh&#8230;)</p>
<h3>The WordPress iOS App</h3>
<p>Let’s face it – the iOS app does a great job in getting your WordPress blog on your iDevice.  Unfortunately, that’s about all it does.  Media remains cumbersome to upload.  Images work well enough, but audio and video support is next to nonexistent – with good reason, mind you.  Tumblr has those supported at the site level, whereas WordPress needs plugins to do them effectively.  What’s left is a great app that’s lacking some pretty substantial features to really be a go-to app for on-the-go blogging.</p>
<h3>Express</h3>
<p>The guys over at WooThemes released Express not too long ago, and it does fill a bit of a gap by utilizing the post formats built into their themes and any theme running the WooTumblog plugin.  It still doesn’t do audio/video, but it makes the experience more seamless – images are treated as a separate post type and are allowed to be formatted as such.</p>
<p>It still lacks video/audio support… and it still has a hole that needs to be filled.</p>
<h3>The Big Secret of the iOS App</h3>
<p>Apple’s apps aren’t known for being open gateways, but WordPress has lovingly open-sourced the app that it holds.  What does that mean? If you love WordPress and iOS development, they NEED you to get in there and make the app what you want it to be.  I would venture to say that they would give you whatever help you needed (within reason) to make the iOS app shine.</p>
<p>With the right third party support (YouTube, for example), you could build into the app a pretty easy way to get video from your phone to WordPress.  Even hooking into WordPress’ own VideoPress would be a step in the right direction, even though the service is pay-for – the people that need it know they do, and would more than likely pay for such a great service.  Same goes for audio.</p>
<p>So, if you love WordPress, and are fluent in the iOS world, jump in and start working.  There’s an untapped potential that exists that will turn a good app into a fantastic one.  It’s one of the major stumbling blocks keeping quite a few tumblr fans from jumping over.</p>
<p><strong>Edit</strong>: Forgot to show you guys where to go to get involved.  The iOS team has a site set up with instructions on how to get in on their Trac system to help with development. You can find it here: <a href="http://ios.wordpress.org/development/">http://ios.wordpress.org/development/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/development/wordpress-needs-ios-enthusiasts/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Stencies &#8211; Code Snippits With Style</title>
		<link>http://www.studionashvegas.com/plugins/stencies-code-snippits-with-style/</link>
		<comments>http://www.studionashvegas.com/plugins/stencies-code-snippits-with-style/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 14:08:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[stencie]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/?p=1543</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/plugins/" title="Plugins">Plugins</a></p>I love getting my hands dirty with new plugins.  I love beta-testing what I think are the up-and-coming rockstar plugins]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/plugins/" title="Plugins">Plugins</a></p><p>I love getting my hands dirty with new plugins.  I love beta-testing what I think are the up-and-coming rockstar plugins that everyone can get use out of.  And I especially love when they actually do something that&#8217;s just&#8230; well, plain awesome!</p>
<p>Enter Stencies.</p>
<div class=" stencies st_378">
<p>Stencies are snippits of code you can drop into your WordPress site to add a personal touch</p>
</div>
<p>Pretty nice, huh?  All I had to do was click the Insert Stencie button in my theme, find the one I want, and drop it in.  And it adds all of the visual styles in right away.</p>
<div class="st_256">
<p>OK, so maybe I&#8217;m overusing them just a bit to prove they work well, but the point is, they do.  All I have to do is find the style I want and click insert.  I can then edit the text in the visual editor.  It&#8217;s a pretty handy trick.</p>
</div>
<p>Also, you can create (at least you will be able to) new stencies you can use over and over again.  Want a two column stencie?  Done.  Want to drop the same graphics into a post every time?  Easy.  It really works well.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Enhanced by Zemanta" href="http://www.zemanta.com/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/zemified_e.png?x-id=057c99be-e8a8-4d03-bbd7-c1645cf23171" alt="Enhanced by Zemanta" /></a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/plugins/stencies-code-snippits-with-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feed Me! Bring an RSS Feed Anywhere in your Site</title>
		<link>http://www.studionashvegas.com/tutorial/feed-me-bring-an-rss-feed-anywhere-in-your-site/</link>
		<comments>http://www.studionashvegas.com/tutorial/feed-me-bring-an-rss-feed-anywhere-in-your-site/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 14:01:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[rss feeds]]></category>
		<category><![CDATA[SimplePie]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.studionashvegas.com/tutorial/feed-me-bring-an-rss-feed-anywhere-in-your-site/</guid>
		<description><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p>Many of us are guilty of running multiple blogs – we have personal blogs, work blogs, and even blogs for our pets.&#160;]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://www.studionashvegas.com/category/tutorial/" title="Tutorial">Tutorial</a></p><p>Many of us are guilty of running multiple blogs – we have personal blogs, work blogs, and even blogs for our pets.&nbsp; If you’re like me, however, you still like to show the different sides of yourself around your different sites.&nbsp; WordPress’ built in RSS Widget does a great job at bringing external feeds into your site, but what if you want a little more control?&nbsp; And what if you don’t want to constrain the feed to a widget, but give it a spot of prominence in a page template?&nbsp; Well, that’s where <a href="http://simplepie.org/">SimplePie</a> comes in – and the best part: it’s built into WordPress.</p>
<p><a href="http://simplepie.org/">SimplePie</a> is a very simple (hence the name) implementation of a php script used to scrape (fetch) a feed and display its contents.</p>
<p>Below is a self-made modification of the RSS sample given on the codex; this is a simple start, but it allows you to modify it like a typical WordPress loop (and structures it very similarly):</p>
<p><font face="Courier New">&lt;?php if(function_exists(&#8216;fetch_feed&#8217;)) {<br />include_once(ABSPATH.WPINC.&#8217;/feed.php&#8217;);<br />$feed = fetch_feed(&#8216;#&#8217;); // Replace the hash mark with your feed URL<br />$limit = $feed-&gt;get_item_quantity(3); // specify number of items to show<br />$items = $feed-&gt;get_items(0, $limit); // create an array of items<br />}<br />if ($limit == 0) echo &#8216;&lt;div&gt;The feed is either empty or unavailable.&lt;/div&gt;&#8217;; // Message to show if 0 items in feed<br />else foreach ($items as $item) : ?&gt;<br /></font><font face="Courier New">&lt;div class=&#8221;post&#8221;&gt;<br />&lt;a class=&#8221;rsswidget&#8221; href=&#8221;&lt;?php echo $item-&gt;get_permalink(); ?&gt;&#8221;<br />title=&#8221;&lt;?php echo $item-&gt;get_date(&#8216;F j Y @ g:i a&#8217;); ?&gt;&#8221;&gt;&lt;h2&gt;&lt;?php echo $item-&gt;get_title(); ?&gt;&lt;/h2&gt;&lt;/a&gt;<br />&lt;p&gt;&lt;?php echo $item-&gt;get_date(&#8216;F j Y&#8217;); ?&gt;&lt;/p&gt;<br />&lt;div class=&#8221;entry&#8221;&gt;<br />&lt;?php echo substr($item-&gt;get_description(), 0, 100); ?&gt; // change 100 to number of characters to show<br />&lt;a class=&#8221;fullpost&#8221; href=&#8221;&lt;?php echo $item-&gt;get_permalink(); ?&gt;&#8221;&gt;read more&lt;/a&gt;<br />&lt;/div&gt;<br />&lt;/div&gt;<br />&lt;?php endforeach; ?&gt; </font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.studionashvegas.com/tutorial/feed-me-bring-an-rss-feed-anywhere-in-your-site/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/

Page Caching using disk: basic
Database Caching 12/81 queries in 0.270 seconds using disk: basic
Object Caching 1344/1510 objects using disk: basic
Content Delivery Network via cdn.studionashvegas.com

Served from: www.studionashvegas.com @ 2012-02-10 02:09:44 -->
