<?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"

			>

	<channel>
		<title>BlueOwlCreative  &#187;  Topic: Change portfolio slug to say something else?</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 22:05:57 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-14069</guid>
					<title><![CDATA[Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-14069</link>
					<pubDate>Thu, 27 Dec 2012 19:34:56 +0000</pubDate>
					<dc:creator>defuzz</dc:creator>

					<description>
						<![CDATA[
						<p>Hi again!</p>
<p>does anyone know how to change the portfolio slugs (eg: portfolio_item) to say something else? I&#8217;m using the functionality to display other items by category, so I&#8217;m not wanting the word &#8220;portfolio&#8221; to be displayed on the front end of the site.</p>
<p>Thanks for your help! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-14886</guid>
					<title><![CDATA[Re: Change portfolio slug(s) to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-14886</link>
					<pubDate>Fri, 28 Dec 2012 04:43:29 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>You can do that but you will need to tweak some code, basically only changing the labels of your Custom Post Type &#8220;Portfolio&#8221; to whatever you want (in functions.php) should do the job.<br />
Edit your functions.php and around line 150 you will see where the Custom Post Type is declared:</p>
<pre><code>register_post_type(<br />
'portfolio',<br />
array(<br />
'labels' =&gt; array(<br />
'name' =&gt; 'Portfolio',<br />
'singular_name' =&gt; 'Portfolio'<br />
),<br />
'public' =&gt; true,<br />
'has_archive' =&gt; true,<br />
'rewrite' =&gt; array('slug' =&gt; 'portfolio_item'),<br />
'supports' =&gt; array('title', 'editor', 'thumbnail'),<br />
'can_export' =&gt; true,<br />
'show_in_nav_menus' =&gt; true,<br />
)<br />
);</code></pre>
<p>In the &#8220;labels&#8221; array change the &#8220;name&#8221; and &#8220;singular_name&#8221; to whatever you want.<br />
If you want to change the slug as well (portfolio_item) you can do that too, but then you need to search through all theme files and replace that &#8220;portfolio_item&#8221; with your new slug. Make sure you backup your files before doing any changes!<br />
Good luck! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18702</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18702</link>
					<pubDate>Tue, 01 Apr 2014 23:28:59 +0000</pubDate>
					<dc:creator>mh</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>I am doing the same customisation and I can&#8217;t see that the slug name is used somewhere in the files except some css style. But If i change the &#8216;portfolio_item&#8217; slug, the URL changes but the posts aren&#8217;t showing then.</p>
<p>I also want to change the &#8216;porfolio_category&#8217; in the URLs with product_category.</p>
<p>Can you please give me a hint on this?</p>
<p>Thanks!</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18714</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18714</link>
					<pubDate>Fri, 04 Apr 2014 11:54:48 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi mh,</p>
<p>You need to also flush your rewrite rules, it is shown here:</p>
<p><a href="http://blueowlcreative.com/support_wp/forums/topic/gallery-homepage-broken/" rel="nofollow">http://blueowlcreative.com/support_wp/forums/topic/gallery-homepage-broken/</a></p>
<p>The category slug is also in the functions.php</p>
<p> <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18798</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18798</link>
					<pubDate>Sun, 06 Apr 2014 21:59:52 +0000</pubDate>
					<dc:creator>mh</dc:creator>

					<description>
						<![CDATA[
						<p>Thank you, the flush rewrite did work.</p>
<p>Still having troubles with the category slug though but it&#8217;s not a problem to have it with portfolio_category</p>
<p>Thanks again.  Great theme !</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18799</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-18799</link>
					<pubDate>Sun, 06 Apr 2014 22:02:55 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hey, glad to hear you worked it out. Rate my theme if you like it! Thanks! <img src="http://blueowlcreative.com/support_wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-21607</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-21607</link>
					<pubDate>Sat, 10 Jan 2015 16:14:27 +0000</pubDate>
					<dc:creator>faisaljamal79</dc:creator>

					<description>
						<![CDATA[
						<p>Hi I am having same issue&#8230; I changed the &#8220;portfolio_item&#8221; slug to &#8220;courses&#8221; and it is showing me error pages.</p>
<p>see here: <a href="http://leapfrogtraining.net.au/courses/some-cool-portfolio-item/" rel="nofollow">http://leapfrogtraining.net.au/courses/some-cool-portfolio-item/</a></p>
<p>let me know how to resolve this issue.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-21608</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-21608</link>
					<pubDate>Sat, 10 Jan 2015 16:21:17 +0000</pubDate>
					<dc:creator>faisaljamal79</dc:creator>

					<description>
						<![CDATA[
						<p>hmmmn little tricky&#8230; it resolved now</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-21708</guid>
					<title><![CDATA[Reply To: Change portfolio slug to say something else?]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/change-portfolio-slugs-to-say-something-else/#post-21708</link>
					<pubDate>Sun, 08 Feb 2015 14:18:32 +0000</pubDate>
					<dc:creator>Corina</dc:creator>

					<description>
						<![CDATA[
						This reply has been marked as private.						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

