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

		<item>
			<title>THE MOLITOR on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-23663</link>
			<pubDate>Fri, 04 Oct 2013 11:47:48 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23663@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>To use the full size image for all posts on category pages, change the following on lines 31-36 from this...</p>
<pre><code>&#60;?php if ( has_post_thumbnail() &#38;&#38; $video) { ?&#62;
	&#60;a class=&#34;thumbLink&#34; href=&#34;&#60;?php the_permalink(); ?&#62;&#34; rel=&#34;bookmark&#34; title=&#34;Permanent Link to &#60;?php the_title_attribute(); ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;post-thumbnail&#039;,array(&#039;title&#039; =&#62; get_the_title())); ?&#62;&#60;/a&#62;
&#60;?php } elseif ( has_post_thumbnail()) { ?&#62;
	&#60;a class=&#34;thumbLinkWide&#34; href=&#34;&#60;?php the_permalink(); ?&#62;&#34; rel=&#34;bookmark&#34; title=&#34;Permanent Link to &#60;?php the_title_attribute(); ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;wide&#039;,array(&#039;title&#039; =&#62; get_the_title())); ?&#62;&#60;/a&#62;
	&#60;div class=&#34;clear&#34;&#62;&#60;/div&#62;
&#60;?php } ?&#62;</code></pre>
<p>...to this...</p>
<pre><code>&#60;?php if ( has_post_thumbnail()) { ?&#62;
	&#60;a class=&#34;thumbLinkWide&#34; href=&#34;&#60;?php the_permalink(); ?&#62;&#34; rel=&#34;bookmark&#34; title=&#34;Permanent Link to &#60;?php the_title_attribute(); ?&#62;&#34;&#62;&#60;?php the_post_thumbnail(&#039;wide&#039;,array(&#039;title&#039; =&#62; get_the_title())); ?&#62;&#60;/a&#62;
	&#60;div class=&#34;clear&#34;&#62;&#60;/div&#62;
&#60;?php } ?&#62;</code></pre>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>adamm6308@gmail.com on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-23654</link>
			<pubDate>Thu, 03 Oct 2013 16:07:25 +0000</pubDate>
			<dc:creator>adamm6308@gmail.com</dc:creator>
			<guid isPermaLink="false">23654@http://www.themolitor.com/forums/</guid>
			<description><p>Hi There, </p>
<p>Thank you for solving the small image issue through email.  Here's what I would like to create:</p>
<p>A video embedded post, however keep the main image in the catagory section the same size as a regular post.  Please see here how Tough Bond is a regular post - I'd like to keep the same image size in the category but change to a video post. </p>
<p><a href="http://108mediacorp.com/category/film/" rel="nofollow">http://108mediacorp.com/category/film/</a></p>
<p>Can you provide the code change to do so?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-23321</link>
			<pubDate>Wed, 18 Sep 2013 09:53:18 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23321@http://www.themolitor.com/forums/</guid>
			<description><p>You bet! :-)</p>
<p>If you're enjoying the theme, please don't forget to rate it on your downloads page on ThemeForest. Positive ratings REALLY help me out and show potential buyers the value of my hard work.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>jillmsachs on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-23310</link>
			<pubDate>Tue, 17 Sep 2013 16:35:34 +0000</pubDate>
			<dc:creator>jillmsachs</dc:creator>
			<guid isPermaLink="false">23310@http://www.themolitor.com/forums/</guid>
			<description><p>Brilliant! That worked perfectly thanks so much!</p>
<p>Jill
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-23291</link>
			<pubDate>Tue, 17 Sep 2013 10:04:52 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23291@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Regarding the post thumbnails for category pages, you can have posts use the poster dimensions by changing the following on line 31 of archive.php from this...</p>
<pre><code>&#60;?php if ( has_post_thumbnail() &#38;&#38; $video) { ?&#62;</code></pre>
<p>...to this...</p>
<pre><code>&#60;?php if ( has_post_thumbnail()) { ?&#62;</code></pre>
<p>Essentially what is happening is the page is looking for posts that have video embed content. If they do, the page treats those posts like video posts and displays the poster, etc. The above edit removes that video check and just spits out the poster image for the post instead of the larger image.</p>
<p>Let me know if that works.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>jillmsachs on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-23278</link>
			<pubDate>Tue, 17 Sep 2013 00:18:43 +0000</pubDate>
			<dc:creator>jillmsachs</dc:creator>
			<guid isPermaLink="false">23278@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>The thumbnails for posts with movies look really great, but I can't seem to control the thumbnails for posts without movies. I'd like to make all thumbnails look like my movie post thumbnails (the dimensions of a movie poster) - I'd love your help locating the code controlling those other posts. For reference, here is the 'Crew' section of my site: <a href="http://fathomfeatures.com.previewdns.com/EverEve/?cat=5" rel="nofollow">http://fathomfeatures.com.previewdns.com/EverEve/?cat=5</a></p>
<p>As you'll notice, for the "Writer/Director" post, I tricked it into going into video post format by writing 'test' in the video embed section. Only problem is it leads you to where the video should be. The "Producer: Nick Schapiro" post below is normal format, with the giant thumbnail pic. I'm not sure why that thumbnail doesn't listen to the code you posted above, but I'm brand new at this...</p>
<p>Thanks!<br />
Jill
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-20867</link>
			<pubDate>Mon, 20 May 2013 09:24:39 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">20867@http://www.themolitor.com/forums/</guid>
			<description><p>Awesome!</p>
<p>Also, please don't forget to rate the theme on your downloads page on ThemeForest if you haven't already. It REALLY helps.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>cemeskinazi on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-20859</link>
			<pubDate>Sun, 19 May 2013 18:05:33 +0000</pubDate>
			<dc:creator>cemeskinazi</dc:creator>
			<guid isPermaLink="false">20859@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>It worked perfectly thanks a lot!</p>
<p>Cem.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-20655</link>
			<pubDate>Tue, 07 May 2013 13:09:26 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">20655@http://www.themolitor.com/forums/</guid>
			<description><p>You bet!</p>
<p>Let me know if that works for you.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>cemeskinazi on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-20653</link>
			<pubDate>Tue, 07 May 2013 13:05:01 +0000</pubDate>
			<dc:creator>cemeskinazi</dc:creator>
			<guid isPermaLink="false">20653@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Thank you very much for the quick response. I will let you know if something goes wrong!!!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-20603</link>
			<pubDate>Mon, 06 May 2013 09:16:30 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">20603@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Open up functions.php and locate the following on lines 24-27...</p>
<pre><code>//FEATURED IMAGE SUPPORT
add_theme_support( &#039;post-thumbnails&#039;, array( &#039;post&#039; ) );
set_post_thumbnail_size( 420, 200, true );
add_image_size( &#039;gallery&#039;,420 ,9999 );</code></pre>
<p>You can adjust the number for "set_post_thumbnail_size" to anything you want. To have you changes applied to images you already have uploaded, you'll need to use the "regenerate thumbnails" plugin available for free here: <a href="http://wordpress.org/extend/plugins/regenerate-thumbnails/" rel="nofollow">http://wordpress.org/extend/plugins/regenerate-thumbnails/</a></p>
<p>Let me know if that helps.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>cemeskinazi on "Featured Image"</title>
			<link>http://www.themolitor.com/forums/topic/featured-image#post-20580</link>
			<pubDate>Fri, 03 May 2013 20:37:09 +0000</pubDate>
			<dc:creator>cemeskinazi</dc:creator>
			<guid isPermaLink="false">20580@http://www.themolitor.com/forums/</guid>
			<description><p>Hi,</p>
<p>Can I change the aspect ratio of the featured image. I just want to make it a square. Thanks for the help! Great theme.
</p></description>
		</item>

	</channel>
</rss>
