<?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: images in portfolio gallery</title>
		<atom:link href="http://blueowlcreative.com/support_wp/forums/topic/images-in-portfolio-gallery/feed/" rel="self" type="application/rss+xml" />
		<link>http://blueowlcreative.com/support_wp/forums/topic/images-in-portfolio-gallery/feed/</link>
		<description></description>
		<pubDate>Fri, 17 Jul 2026 11:19:01 +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/images-in-portfolio-gallery/#post-21240</guid>
					<title><![CDATA[images in portfolio gallery]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/images-in-portfolio-gallery/#post-21240</link>
					<pubDate>Mon, 22 Sep 2014 00:45:29 +0000</pubDate>
					<dc:creator>pdxpamela</dc:creator>

					<description>
						<![CDATA[
						<p>I&#8217;m having a few issues with the portfolio:<br />
1. I place the images in the portfolio in the order I want them to display in the gallery, however they do not follow this. I thought it displayed them in a random order, but I think they display in the order they are uploaded to the media library. How can I have them display in the order I place them in the portfolio?<br />
2. If I delete images from a portfolio, they still display in the gallery even though they don&#8217;t show up in the post. I have to delete them from the library to get them to stop displaying.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://blueowlcreative.com/support_wp/forums/topic/images-in-portfolio-gallery/#post-21244</guid>
					<title><![CDATA[Reply To: images in portfolio gallery]]></title>
					<link>http://blueowlcreative.com/support_wp/forums/topic/images-in-portfolio-gallery/#post-21244</link>
					<pubDate>Tue, 23 Sep 2014 09:39:22 +0000</pubDate>
					<dc:creator>BlueOwl</dc:creator>

					<description>
						<![CDATA[
						<p>Hi,</p>
<p>Edit your portfolio-three-column.php and modify your query to take in an extra param:</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
);</code></pre>
<p>according to the specs:</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 you could do smth like:</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;orderby&#039; =&gt; &#039;title&#039;
);</code></pre>
<p>For example. </p>
<p>As for the images you need to dissociate an image from a post in order to have it stop showing in the list of images, one way is too physically remove the image.</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

