<?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: Adding an excerpt to Home page posts</title>
		<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Adding an excerpt to Home page posts</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 09:56:04 +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/adding-an-excerpt-to-home-page-posts" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-27475</link>
			<pubDate>Mon, 03 Mar 2014 12:53:21 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">27475@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>This is a resolved thread that is pretty old and unrelated to your question. Please create a new thread for new questions and I'll be happy to review.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>RhondaRhocks on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-27440</link>
			<pubDate>Fri, 28 Feb 2014 11:44:06 +0000</pubDate>
			<dc:creator>RhondaRhocks</dc:creator>
			<guid isPermaLink="false">27440@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks Chris, my excerpt length in functions.php was 15 and changed it to 250 and it worked like a charm. But now I'm off to find out how to get images (ie. logo) to show up in the post. Created a Thank You page, where charity recipients or such (church groups as in my first post) can post thank you to the website: <a href="http://www.themainplaceirving.org" rel="nofollow">http://www.themainplaceirving.org</a>. BTW, love the theme.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-22994</link>
			<pubDate>Fri, 06 Sep 2013 08:14:46 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22994@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>You should be able to put that function anywhere in the functions.php file. Try the top of the file after the opening php tag.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>swiiper on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-22982</link>
			<pubDate>Thu, 05 Sep 2013 11:58:23 +0000</pubDate>
			<dc:creator>swiiper</dc:creator>
			<guid isPermaLink="false">22982@http://www.themolitor.com/forums/</guid>
			<description><p>&#60;?php the_title(); ?&#62;&#60;/h2&#62;<br />
doesn't exist on my functions.php file  - any ideas.<br />
Without knowing where to place code in Step 2 of Crobinso2010 post above, my exerpts do indeed spill over.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-22288</link>
			<pubDate>Fri, 26 Jul 2013 12:39:34 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">22288@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks for sharing! :-)</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>crobinso2010 on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-22281</link>
			<pubDate>Thu, 25 Jul 2013 20:59:37 +0000</pubDate>
			<dc:creator>crobinso2010</dc:creator>
			<guid isPermaLink="false">22281@http://www.themolitor.com/forums/</guid>
			<description><p>Thanks everyone.  For new people here's the steps.</p>
<p>STEP 1: index.php<br />
Go to the index.php file that is in the WPaid folder.  In it, use Find to go where it says "&#60;?php the_title(); ?&#62;&#60;/h2&#62;".  Right after the &#60;/h&#62; paste:  &#60;p&#62;&#60;?php the_excerpt(); ?&#62;&#60;/p&#62;</p>
<p>STEP 2: functions.php<br />
If you don't specify the number of words the excerpt is, then text may spill over.  Go to the functions.php file and use Find to go to where it says &#60;?php the_title(); ?&#62;&#60;/h2&#62;.  Right after the &#60;/h&#62; paste (or change the 25 below to whatever number of words you want):  </p>
<p>function custom_excerpt_length( $length ) {<br />
	return 25;<br />
}<br />
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );</p>
<p>STEP 3: archive.php<br />
So far, you'll only have allowed excerpts for posts that show on your home page.  To have them show on other pages, you'll need to past the same thing as Step 1 into the archive.php file.  (Note: don't be confused by the name 'archive' as it is just applying to all the categories).</p>
<p>So Step 3 is to repeat what you did in Step 1, but in the archive.php file.</p>
<p>cheers,<br />
Chris R.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-20259</link>
			<pubDate>Wed, 17 Apr 2013 09:25:47 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">20259@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Category pages are controlled from the archive.php template file.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>Grlpants on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-20242</link>
			<pubDate>Tue, 16 Apr 2013 12:41:34 +0000</pubDate>
			<dc:creator>Grlpants</dc:creator>
			<guid isPermaLink="false">20242@http://www.themolitor.com/forums/</guid>
			<description><p>Does anyone know if this applies to category posts NOT on the homepage?  Because it doesn't seem to. Any help would be appreciated. :)</p>
<p>Thanks in advance
</p></description>
		</item>
		<item>
			<title>dgohlke on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-15953</link>
			<pubDate>Fri, 16 Nov 2012 14:17:49 +0000</pubDate>
			<dc:creator>dgohlke</dc:creator>
			<guid isPermaLink="false">15953@http://www.themolitor.com/forums/</guid>
			<description><p>I'm not Chris, but I just enabled this.</p>
<p>Add the middle line between the first and second lines in the Main Index Template (index.php).</p>
<pre><code>&#60;h2&#62;&#60;a&#62;&#34;&#62;&#60;?php the_title(); ?&#62;&#60;/a&#62;&#60;/h2&#62;
&#60;p&#62;&#60;?php the_excerpt(); ?&#62;&#60;/p&#62;
&#60;div class=&#34;metaInfo&#34;&#62;&#60;?php the_time(&#039;F j, Y&#039;) ?&#62;</code></pre></description>
		</item>
		<item>
			<title>susanshemtov on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-14927</link>
			<pubDate>Tue, 25 Sep 2012 14:47:37 +0000</pubDate>
			<dc:creator>susanshemtov</dc:creator>
			<guid isPermaLink="false">14927@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Can you tell me where within the index.php the code should be entered?<br />
What code should I use?</p>
<p>Thank You
</p></description>
		</item>
		<item>
			<title>ckelley on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-14598</link>
			<pubDate>Wed, 12 Sep 2012 06:01:29 +0000</pubDate>
			<dc:creator>ckelley</dc:creator>
			<guid isPermaLink="false">14598@http://www.themolitor.com/forums/</guid>
			<description><p>you'll need to add the excerpt into the loop in the index.php <a href="http://codex.wordpress.org/Function_Reference/the_excerpt" rel="nofollow">http://codex.wordpress.org/Function_Reference/the_excerpt</a></p>
<p>-Chris K
</p></description>
		</item>
		<item>
			<title>stephenchavez on "Adding an excerpt to Home page posts"</title>
			<link>http://www.themolitor.com/forums/topic/adding-an-excerpt-to-home-page-posts#post-14571</link>
			<pubDate>Tue, 11 Sep 2012 15:23:52 +0000</pubDate>
			<dc:creator>stephenchavez</dc:creator>
			<guid isPermaLink="false">14571@http://www.themolitor.com/forums/</guid>
			<description><p>I have my blog posts connected to the home page in the center like the demo site has. I was just wondering how to get wp to automatically take like the first 150 words from the entire post and make an excerpt from it to display next to the thumbnail and under the title link.<br />
Thanks
</p></description>
		</item>

	</channel>
</rss>
