<?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: Reorder Portfolio Items</title>
		<atom:link href="https://blueowlcreative.com/support_wp/forums/topic/reorder-portfolio-items/feed/" rel="self" type="application/rss+xml" />
		<link>https://blueowlcreative.com/support_wp/forums/topic/reorder-portfolio-items/feed/</link>
		<description></description>
		<pubDate>Wed, 20 May 2026 17:19:17 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.3-5249</generator>
		<language>en-US</language>

		
														
					
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/reorder-portfolio-items/#post-18853</guid>
					<title><![CDATA[Reorder Portfolio Items]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/reorder-portfolio-items/#post-18853</link>
					<pubDate>Mon, 07 Apr 2014 13:36:47 +0000</pubDate>
					<dc:creator>karanmanglani</dc:creator>

					<description>
						<![CDATA[
						<p>Is it possible to reorder the items on the portfolio page?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://blueowlcreative.com/support_wp/forums/topic/reorder-portfolio-items/#post-18857</guid>
					<title><![CDATA[Reply To: Reorder Portfolio Items]]></title>
					<link>https://blueowlcreative.com/support_wp/forums/topic/reorder-portfolio-items/#post-18857</link>
					<pubDate>Mon, 07 Apr 2014 14:24:17 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi there,</p>
<p>Sure, once you edit your Savia\portfolio-three-column.php you will see the arguments for the query that gets your portfolio items.</p>
<pre><code>
$args = array(
	&#039;post_type&#039; =&gt; &#039;portfolio&#039;,
	&#039;posts_per_page&#039; =&gt; (ot_get_option(&#039;portfolio_items_per_page&#039;,9) ? ot_get_option(&#039;portfolio_items_per_page&#039;,9) : 9),
	&#039;paged&#039; =&gt; $paged,
	&#039;order&#039; =&gt; &#039;&#039;,
	&#039;orderby&#039; =&gt; &#039;&#039;,
);</code></pre>
<p>You can pass the &#8216;order&#8217; and &#8216;orderby&#8217; params to change the order of the results.<br />
Here&#8217;s how:</p>
<p><a href="http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters" rel="nofollow">http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters</a></p>
<p>So for example if you want them ordered by &#8216;title&#8217; in a descending order you would do this:</p>
<pre><code>
$args = array(
	&#039;post_type&#039; =&gt; &#039;portfolio&#039;,
	&#039;posts_per_page&#039; =&gt; (ot_get_option(&#039;portfolio_items_per_page&#039;,9) ? ot_get_option(&#039;portfolio_items_per_page&#039;,9) : 9),
	&#039;paged&#039; =&gt; $paged,
	&#039;order&#039; =&gt; &#039;DESC&#039;,
	&#039;orderby&#039; =&gt; &#039;title&#039;
);
</code></pre>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

