<?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: Excluding featured image from slideshow</title>
		<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Excluding featured image from slideshow</description>
		<language>en-US</language>
		<pubDate>Sun, 03 May 2026 05:00:21 +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/excluding-featured-image-from-slideshow" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-25607</link>
			<pubDate>Wed, 18 Dec 2013 10:50:18 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25607@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Try this: change the following in the functions.php file on lines 18-36 from this...</p>
<pre><code>//IMAGE ATTACHMENTS FOR POST PAGE
function attachment_postpage($size = full) {
	if($images = get_children(array(
		&#039;order&#039;   =&#62; &#039;ASC&#039;,
		&#039;orderby&#039; =&#62; &#039;menu_order&#039;,
		&#039;post_parent&#039;    =&#62; get_the_ID(),
		&#039;post_type&#039;      =&#62; &#039;attachment&#039;,
		&#039;numberposts&#039;    =&#62; -1, // show all
		&#039;post_status&#039;    =&#62; null,
		&#039;post_mime_type&#039; =&#62; &#039;image&#039;
	))) {
		foreach($images as $image) {
			$attimg   = wp_get_attachment_image($image-&#62;ID,$size);
			$atturl   = wp_get_attachment_url($image-&#62;ID);
			$atttitle = apply_filters(&#039;the_title&#039;,$image-&#62;post_title);
			echo&#039;&#60;li&#62;&#039;.$attimg.&#039;&#60;/li&#62;&#039;;
		}
	}
}</code></pre>
<p>...to this...</p>
<pre><code>//IMAGE ATTACHMENTS FOR POST PAGE
function attachment_postpage($size = full) {
	$thumb_ID = get_post_thumbnail_id( $post-&#62;ID );
	if($images = get_children(array(
		&#039;order&#039;   =&#62; &#039;ASC&#039;,
		&#039;orderby&#039; =&#62; &#039;menu_order&#039;,
		&#039;post_parent&#039;    =&#62; get_the_ID(),
		&#039;post_type&#039;      =&#62; &#039;attachment&#039;,
		&#039;numberposts&#039;    =&#62; -1, // show all
		&#039;post_status&#039;    =&#62; null,
		&#039;post_mime_type&#039; =&#62; &#039;image&#039;,
		&#039;exclude&#039; =&#62; $thumb_ID
	))) {
		foreach($images as $image) {
			$attimg   = wp_get_attachment_image($image-&#62;ID,$size);
			$atturl   = wp_get_attachment_url($image-&#62;ID);
			$atttitle = apply_filters(&#039;the_title&#039;,$image-&#62;post_title);
			echo&#039;&#60;li&#62;&#039;.$attimg.&#039;&#60;/li&#62;&#039;;
		}
	}
}</code></pre>
<p>I haven't tested this method, so I'm not certain it will work. If not, I'll have to ask that you please submit a customization request here: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>tascencao on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-25589</link>
			<pubDate>Tue, 17 Dec 2013 20:10:29 +0000</pubDate>
			<dc:creator>tascencao</dc:creator>
			<guid isPermaLink="false">25589@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there, I am also wishing to remove the repetition of the featured image from inside the post. I would prefer that when someone clicks to read more that they only read what we want the post to show.<br />
Is there really no way this can be done simply?</p>
<p>I also don't know code, but am wondering if something along that lines of this would work: gallery {exclude={$id}]"); // insert the gallery without the thumbnail ?;}</p>
<p>Many thanks,<br />
Teresa
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-21831</link>
			<pubDate>Tue, 02 Jul 2013 09:13:12 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">21831@http://www.themolitor.com/forums/</guid>
			<description><p>You bet! :-)</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>Nikodemus0 on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-21822</link>
			<pubDate>Tue, 02 Jul 2013 00:32:45 +0000</pubDate>
			<dc:creator>Nikodemus0</dc:creator>
			<guid isPermaLink="false">21822@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>I understand. Thanks anyway.</p>
<p>Best Nick
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-21803</link>
			<pubDate>Mon, 01 Jul 2013 12:32:46 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">21803@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Thank you for clarifying. Unfortunately that goes a bit beyond the level of support I'm able to provide here in the forums. If it was something I knew off the top of my head I would gladly help, but if it requires a bit of research, testing and custom code then I have to refer you to the customization request form: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Hope you understand.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>Nikodemus0 on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-21792</link>
			<pubDate>Sun, 30 Jun 2013 05:34:05 +0000</pubDate>
			<dc:creator>Nikodemus0</dc:creator>
			<guid isPermaLink="false">21792@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Sorry, but I think I didn´t express my needs properly:-) Here I go again:</p>
<p>I have a main timeline with the postings and featured images showing up there.<br />
When I click on the images the prettyphoto gallery pops up and the very first image<br />
is always (!) the featured image again. The next photos are the attached ones.<br />
My question is now, how can I prevent the featured image (former post thumbnail?) showing up in the prettyphoto<br />
gallery? In the internet I found some hints and snippets of code for example like this one:</p>
<p>&#60;?php  $id = get_post_thumbnail_id(get_the_ID()); // gets the post thumbnail ID ?&#62;<br />
&#60;?php echo do_shortcode("[gallery exclude={$id}]"); // insert the gallery without the thumbnail ?&#62;</p>
<p>It must be inserted in the themes function.php. But as not being a programmer its hard to tell where to insert it. Tried, but did not work... Maybe (hopefully) a big thing for me and a little for you :-)</p>
<p>But anyway thank you very much for helping again.</p>
<p>Nick
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-21568</link>
			<pubDate>Tue, 18 Jun 2013 13:13:51 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">21568@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>To prevent images from appearing in the slider, simply upload them from the media upload page (not the post edit page) so that they don't get attached to the post. You can then insert images into the post content if you want, without the images appearing in the gallery.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>Nikodemus0 on "Excluding featured image from slideshow"</title>
			<link>http://www.themolitor.com/forums/topic/excluding-featured-image-from-slideshow#post-21543</link>
			<pubDate>Mon, 17 Jun 2013 14:27:44 +0000</pubDate>
			<dc:creator>Nikodemus0</dc:creator>
			<guid isPermaLink="false">21543@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>just want to ask if it is possible to exclude the featured image from the attached images show as<br />
it appears doubled. This question can be found around the net for the main and other themes and there are snippets of code that can provide this. It doesn´t seem to be big work but I don´t know what has to be inserted in The Curator Theme. I think it must be some  change in the the function.php (--&#62;//IMAGE ATTACHMENTS FOR TIMELINE  &#38; //IMAGE ATTACHMENTS FOR POST PAGE section). Would be great if you could help regarding this topic. </p>
<p>Thanks for your help in advance</p>
<p>Nick
</p></description>
		</item>

	</channel>
</rss>
