<?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>BlueOwlCreative</title>
	<atom:link href="http://blueowlcreative.com/support_wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://blueowlcreative.com/support_wp</link>
	<description>Support Forum</description>
	<lastBuildDate>Tue, 10 Mar 2026 15:39:15 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.3</generator>
	<item>
		<title>Out of office notice</title>
		<link>http://blueowlcreative.com/support_wp/out-of-office-notice/</link>
		<comments>http://blueowlcreative.com/support_wp/out-of-office-notice/#comments</comments>
		<pubDate>Sun, 25 Jun 2017 13:39:01 +0000</pubDate>
		<dc:creator><![CDATA[BlueOwl]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blueowlcreative.com/support_wp/?p=31659</guid>
		<description><![CDATA[We&#8217;ll be out of the office and have limited support until this upcoming Thursday, June 29. Happy summer!]]></description>
				<content:encoded><![CDATA[<p>We&#8217;ll be out of the office and have limited support until this upcoming Thursday, June 29.</p>
<p>Happy summer! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blueowlcreative.com/support_wp/out-of-office-notice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change Portfolio&#8217;s slug from portfolio_item to something else.</title>
		<link>http://blueowlcreative.com/support_wp/how-to-change-portfolios-slug-from-portfolio_item-to-something-else/</link>
		<comments>http://blueowlcreative.com/support_wp/how-to-change-portfolios-slug-from-portfolio_item-to-something-else/#comments</comments>
		<pubDate>Wed, 04 Nov 2015 15:39:58 +0000</pubDate>
		<dc:creator><![CDATA[BlueOwl]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blueowlcreative.com/support_wp/?p=24222</guid>
		<description><![CDATA[Hi everyone, As we have received a few requests for a tutorial on changing the default theme&#8217;s portfolio_item slug we are willing to show the whole process in a step by step guide. In the example below we shall change &#8230; <a href="http://blueowlcreative.com/support_wp/how-to-change-portfolios-slug-from-portfolio_item-to-something-else/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Hi everyone,</p>
<p>As we have received a few requests for a tutorial on changing the default theme&#8217;s portfolio_item slug we are willing to show the whole process in a step by step guide.<br />
In the example below we shall change the &#8220;portfolio&#8221; Custom Post Type to &#8220;book&#8221; just for the sake of this tutorial.</p>
<p>1. We make a copy of the plugin file found in \wp-content\plugins\fortuna_portfolio_cpt\fortuna_portfolio_cpt.php &#8211; this is the plugin responsible for registering the Portfolio custom post type. We shall name it and place it in a directory according to its new name &#8220;book&#8221; so: \wp-content\plugins\fortuna_book_cpt\fortuna_book_cpt.php</p>
<p>2. We edit the newly created fortuna_book_cpt.php file and replace all occurrences of &#8220;portfolio&#8221; with &#8220;book&#8221;. At this point in order to finalize the registration of our new &#8220;Book&#8221; custom post type we should go to WP Dashboard and activate our &#8220;Fortuna Book CPT&#8221; plugin and deactivate the &#8220;Fortuna Portfolio CPT&#8221;.</p>
<p>3. Next we need to setup the correct templates for this newly created post type. We can copy over the portfolio templates into your Child Theme and rename them accordingly followin the new &#8220;book&#8221; nomenclature.</p>
<p>We&#8217;ll need:</p>
<ul>
<li>single-portfolio.php -&gt; single-book.php</li>
<li>taxonomy-portfolio_category.php -&gt; taxonomy-book_category.php</li>
<li>portfolio-three-column.php -&gt; book-three-column.php</li>
</ul>
<p>4. If you will be using the portfolio-three-column.php (the Template with the category filter dropdown) you will need to update inside of it the call to the &#8220;boc_get_portfolio_items&#8221; method, replace it with &#8220;boc_get_book_items&#8221; then edit your Child theme&#8217;s function.php file and add this new method:</p>
<p>if( ! function_exists( &#8216;boc_get_book_items&#8217; ) ) {<br />
function boc_get_book_items($limit = 10, $order_by = &#8216;rand&#8217;, $order = &#8216;DESC&#8217;, $category=&#8221;, $paged = 1) {</p>
<p>$args = array(<br />
&#8216;ignore_sticky_posts&#8217; =&gt; 0,<br />
&#8216;post_type&#8217; =&gt; &#8216;book&#8217;,<br />
&#8216;posts_per_page&#8217; =&gt; (int)$limit,<br />
&#8216;orderby&#8217;=&gt; $order_by,<br />
&#8216;order&#8217;=&gt; $order,<br />
&#8216;paged&#8217; =&gt; $paged,<br />
&#8216;portfolio_category&#8217; =&gt; $category,<br />
);</p>
<p>$query = new WP_Query($args);</p>
<p>wp_reset_postdata();</p>
<p>return $query;<br />
}<br />
}</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blueowlcreative.com/support_wp/how-to-change-portfolios-slug-from-portfolio_item-to-something-else/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://blueowlcreative.com/support_wp/hello-world/</link>
		<comments>http://blueowlcreative.com/support_wp/hello-world/#comments</comments>
		<pubDate>Sun, 23 Feb 2014 18:31:16 +0000</pubDate>
		<dc:creator><![CDATA[blueowlcreative]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blueowlcreative.com/support_wp/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
				<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://blueowlcreative.com/support_wp/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
