<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Header images shown as uploaded order instead of random</title>
		<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Header images shown as uploaded order instead of random</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 23:27:25 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/header-images-shown-as-uploaded-order-instead-of-random" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-38825</link>
			<pubDate>Wed, 27 Apr 2016 08:56:46 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">38825@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>There is a randomize button in the header images section of the Customize page. Be sure that is turned off.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Christopher
</p></description>
		</item>
		<item>
			<title>jbauerle on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-38821</link>
			<pubDate>Tue, 26 Apr 2016 20:20:45 +0000</pubDate>
			<dc:creator>jbauerle</dc:creator>
			<guid isPermaLink="false">38821@http://www.themolitor.com/forums/</guid>
			<description><p>I tried uploading the images in the order I want them to appear in the slideshow, but they are still randomizing. Is there a way to get them to appear in a specific order? My website is jillbauerle.com. Thanks!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-37615</link>
			<pubDate>Fri, 05 Feb 2016 13:39:23 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">37615@http://www.themolitor.com/forums/</guid>
			<description><p>Woohoo! :-)
</p></description>
		</item>
		<item>
			<title>Snowanimationstudio on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-37609</link>
			<pubDate>Fri, 05 Feb 2016 11:06:43 +0000</pubDate>
			<dc:creator>Snowanimationstudio</dc:creator>
			<guid isPermaLink="false">37609@http://www.themolitor.com/forums/</guid>
			<description><p>Wow, an awesome theme AND superbe support!<br />
5 stars for you! :)
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-37606</link>
			<pubDate>Fri, 05 Feb 2016 10:25:10 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">37606@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>VYSUAL is using the native WordPress header image feature and turns it into a slideshow system. WordPress doesn't have a native slideshow feature for the header images, which is why they don't have any kind of drag-and-drop functionality.</p>
<p>Currently the reviews are set to display randomly. If you want to change this, open page-reviews.php and locate the following on line 63...</p>
<pre><code>&#039;orderby&#039; =&#62; &#039;rand&#039;,</code></pre>
<p>You have the following options to replace 'rand'...</p>
<ul>
<li> 'none' - No order.
</li>
<li> 'ID' - Order by post id.  Note the capitalization.
</li>
<li> 'author' - Order by author.
</li>
<li> 'title' - Order by title.
</li>
<li> 'name' - Order by post name (post slug).
</li>
<li> 'type' - Order by post type.
</li>
<li> 'date' - Order by date.
</li>
<li> 'modified' - Order by last modified date.
</li>
<li> 'parent' - Order by post/page parent id.
</li>
<li> 'rand' - Random order.
</li>
<li> 'comment_count' - Order by number of comments.
</li>
<li> 'menu_order' - Order by  Page Order. Used most often for Pages and for Attachments (the integer fields in the Insert / Upload Media Gallery dialog), but could be used for any post type with distinct 'menu_order' values (they all default to &#60;var&#62;0&#60;/var&#62;).
</li>
<li> 'meta_value' - Note that a 'meta_key=keyname' must also be present in the query. Note also that the sorting will be alphabetical which is fine for strings (i.e. words), but can be unexpected for numbers (e.g. 1, 3, 34, 4, 56, 6, etc, rather than 1, 3, 4, 6, 34, 56 as you might naturally expect). Use 'meta_value_num' instead for numeric values. You may also specify 'meta_type' if you want to cast the meta value as a specific type. Possible values are 'NUMERIC', 'BINARY', 'CHAR', 'DATE', 'DATETIME', 'DECIMAL', 'SIGNED', 'TIME', 'UNSIGNED', same as in '$meta_query'. When using 'meta_type' you can also use meta_value_* accordingly. For example, when using DATETIME as 'meta_type' you can use 'meta_value_datetime' to define order structure.
</li>
<li> 'meta_value_num' - Order by numeric meta value. Also note that a 'meta_key=keyname' must also be present in the query. This value allows for numerical sorting as noted above in 'meta_value'.
</li>
<li> 'post__in' - Preserve post ID order given in the post__in array.
</li>
</ul>
<p>Hope that helps!</p>
<p>Best,</p>
<p>Christopher
</p></description>
		</item>
		<item>
			<title>Snowanimationstudio on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-37599</link>
			<pubDate>Fri, 05 Feb 2016 07:31:07 +0000</pubDate>
			<dc:creator>Snowanimationstudio</dc:creator>
			<guid isPermaLink="false">37599@http://www.themolitor.com/forums/</guid>
			<description><p>That edit time limit sure is short. :)</p>
<p>Is there any way I can fix this myself or is it a major thing that has to change in the theme for it to work in a more intuitive way?</p>
<p>May I suggest you add the feature to Customizing Header Image menu where you can drag the images around and have them appear after how they are added to the menu and have a toggle box for random instead of ordered.
</p></description>
		</item>
		<item>
			<title>Snowanimationstudio on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-37598</link>
			<pubDate>Fri, 05 Feb 2016 07:23:41 +0000</pubDate>
			<dc:creator>Snowanimationstudio</dc:creator>
			<guid isPermaLink="false">37598@http://www.themolitor.com/forums/</guid>
			<description><p>Okay, so I've figured out what's going on with the order of the header images.<br />
The images are displayed in the order they are uploaded to the Media Library and the reviews are displayed backwards, the latest posted review is the first one to show.<br />
So if I have 4 images (1.png to 4.png) that I want to sync with 4 reviews I have to upload the images in the order 4 -1 so that they match the reviews which are posted 1-4. This becomes problematic if I later decide to add a fifth image with corresponding review.<br />
I either have to delete all uploaded images and upload them again, starting with image 5, down to image 1. Or redo all review posts.<br />
This is fine for 5 images, but when you have say 30 images it starts to be a hassle.
</p></description>
		</item>
		<item>
			<title>Snowanimationstudio on "Header images shown as uploaded order instead of random"</title>
			<link>http://www.themolitor.com/forums/topic/header-images-shown-as-uploaded-order-instead-of-random#post-37597</link>
			<pubDate>Fri, 05 Feb 2016 06:31:56 +0000</pubDate>
			<dc:creator>Snowanimationstudio</dc:creator>
			<guid isPermaLink="false">37597@http://www.themolitor.com/forums/</guid>
			<description><p>Hi,<br />
I'm trying to tie the reviews to specific header images.<br />
I found how to have the reviews show up in post order from another thread, by editing page-reviews.php.<br />
But I can't find a smilar string of code to turn the random off for the header images.<br />
If I only could have the header image show up in the order they're listed under customize header images I can sync the header images with the reviews.</p>
<p>Cheers!
</p></description>
		</item>

	</channel>
</rss>
