<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: excerpt</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: excerpt</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 08:13:50 +0000</pubDate>

<item>
<title>justmebg on "Main Index not showing Read More correctly"</title>
<link>http://wordpress.org/support/topic/335665#post-1293957</link>
<pubDate>Wed, 25 Nov 2009 22:36:18 +0000</pubDate>
<dc:creator>justmebg</dc:creator>
<guid isPermaLink="false">1293957@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have a new Wordpress site and I am stumped by this one. I can't seem to get my Main Index page to observe the &#34;Read More&#34; tags I have in posts. I don't want to use the excerpt in place of the content tag because I only want this to happen with certain posts. It works fine in the archives, but not on the main page. I have been over and over the Loop code and can't figure out what the difference is, they look identical to me. help?
&#60;/p&#62;</description>
</item>
<item>
<title>CWitt22 on "Display excerpt for certain category, display 200 characters for rest"</title>
<link>http://wordpress.org/support/topic/335278#post-1292653</link>
<pubDate>Tue, 24 Nov 2009 21:42:54 +0000</pubDate>
<dc:creator>CWitt22</dc:creator>
<guid isPermaLink="false">1292653@http://wordpress.org/support/</guid>
<description>&#60;p&#62;First &#38;amp; foremost here is my existing code. I am showing 6 posts on the homepage with the first 200 characters of the post displaying, followed by a 'Read More' button. This is great for my posts with words, but not so good for my posts with video. My solution is to have category 14 for all videos, when a category 14 post is to be displayed I would like it display the excerpt rather than the 200 characters. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;?php query_posts(&#38;#39;showposts=6&#38;#39;);
if(have_posts()) : while(have_posts()) : the_post(); ?&#38;gt;

	&#38;lt;!-- begin post --&#38;gt;
	&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;
		&#38;lt;h2&#38;gt; &#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt; &#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
		&#38;lt;p class=&#38;quot;date&#38;quot;&#38;gt;&#38;lt;?php the_author_posts_link(); ?&#38;gt; on &#38;lt;?php the_time(&#38;#39;m j, Y&#38;#39;) ?&#38;gt; &#124; &#38;lt;?php comments_popup_link(&#38;#39;No Comments&#38;#39;, &#38;#39;1 Comment&#38;#39;, &#38;#39;% Comments&#38;#39;); ?&#38;gt;&#38;lt;/p&#38;gt;
		&#38;lt;div class=&#38;quot;thumb&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php dp_attachment_image($post-&#38;gt;ID, &#38;#39;high&#38;#39;, &#38;#39;alt=&#38;quot;&#38;#39; . $post-&#38;gt;post_title . &#38;#39;&#38;quot;&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;p&#38;gt;&#38;lt;?php echo dp_clean($post-&#38;gt;post_content, 200); ?&#38;gt;&#38;lt;/p&#38;gt;
		&#38;lt;a class=&#38;quot;readmore&#38;quot; href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;Read More&#38;lt;/a&#38;gt;
	&#38;lt;/div&#38;gt;
	&#38;lt;!-- end post --&#38;gt;

	&#38;lt;?php endwhile; endif; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;My attempt to solve my code was this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php query_posts(&#38;#39;showposts=6&#38;#39;);
if(have_posts()) : while(have_posts()) : the_post(); ?&#38;gt;

	&#38;lt;!-- begin post --&#38;gt;
	&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;
		&#38;lt;h2&#38;gt; &#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt; &#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
		&#38;lt;p class=&#38;quot;date&#38;quot;&#38;gt;&#38;lt;?php the_author_posts_link(); ?&#38;gt; on &#38;lt;?php the_time(&#38;#39;m j, Y&#38;#39;) ?&#38;gt; &#124; &#38;lt;?php comments_popup_link(&#38;#39;No Comments&#38;#39;, &#38;#39;1 Comment&#38;#39;, &#38;#39;% Comments&#38;#39;); ?&#38;gt;&#38;lt;/p&#38;gt;
		&#38;lt;div class=&#38;quot;thumb&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php dp_attachment_image($post-&#38;gt;ID, &#38;#39;high&#38;#39;, &#38;#39;alt=&#38;quot;&#38;#39; . $post-&#38;gt;post_title . &#38;#39;&#38;quot;&#38;#39;); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;p&#38;gt;&#38;lt;?php if ( is_category(&#38;#39;14&#38;#39;)) {
				the_excerpt();
			} else {
				echo dp_clean($post-&#38;gt;post_content, 200);
			} ?&#38;gt;&#38;lt;/p&#38;gt;
		&#38;lt;a class=&#38;quot;readmore&#38;quot; href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;Read More&#38;lt;/a&#38;gt;
	&#38;lt;/div&#38;gt;
	&#38;lt;!-- end post --&#38;gt;

	&#38;lt;?php endwhile; endif; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This didn't do it, but I think I'm missing something simple with my IF statement. Anyone have some ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>amuralikumar on "Get excerpt as variable?"</title>
<link>http://wordpress.org/support/topic/232285#post-1292523</link>
<pubDate>Tue, 24 Nov 2009 19:50:30 +0000</pubDate>
<dc:creator>amuralikumar</dc:creator>
<guid isPermaLink="false">1292523@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Use get_the_excerpt() function.&#60;/p&#62;
&#60;p&#62;EXAMPLE :&#38;lt;?php&#60;br /&#62;
$myExcerpt = get_the_excerpt();&#60;br /&#62;
if ($myExcerpt != '') {&#60;br /&#62;
    // Some string manipulation performed&#60;br /&#62;
}&#60;br /&#62;
echo $myExcerpt; // Outputs the processed value to the page&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;for more check &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/get_the_excerpt&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Function_Reference/get_the_excerpt&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bugsyrocker on "functions.php error"</title>
<link>http://wordpress.org/support/topic/334770#post-1291148</link>
<pubDate>Mon, 23 Nov 2009 16:45:46 +0000</pubDate>
<dc:creator>bugsyrocker</dc:creator>
<guid isPermaLink="false">1291148@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am trying to add a custom function to functions.php to trim the length of the exceprt.  I pulled this code from: &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/the_excerpt&#34;&#62;http://codex.wordpress.org/Template_Tags/the_excerpt&#60;/a&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function new_excerpt_length($length) {
	return 20;
}
add_filter(&#38;#39;excerpt_length&#38;#39;, &#38;#39;new_excerpt_length&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However, when I insert it and reload my blog everything is blank, and it seems to break the functions.php code.  &#60;/p&#62;
&#60;p&#62;I am new to this stuff, but it seems to be in the &#34;add_filter&#34; section.  If I remove that line the error no longer occurs, but clearly the function doesn't work.&#60;/p&#62;
&#60;p&#62;Ideas?  Thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>vinuel on "All posts excerpt except the first"</title>
<link>http://wordpress.org/support/topic/333826#post-1288162</link>
<pubDate>Fri, 20 Nov 2009 15:56:05 +0000</pubDate>
<dc:creator>vinuel</dc:creator>
<guid isPermaLink="false">1288162@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks Michael!&#60;/p&#62;
&#60;p&#62;The code doesn’t work for me, but this Plug-In is exactly what I was looking for: &#60;a href=&#34;http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/&#34; rel=&#34;nofollow&#34;&#62;http://www.dailyblogtips.com/homepage-excerpts-wordpress-plugin/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "All posts excerpt except the first"</title>
<link>http://wordpress.org/support/topic/333826#post-1288085</link>
<pubDate>Fri, 20 Nov 2009 14:50:24 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1288085@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Didn't test this but something similar to:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
if (have_posts()) {
  $count = 0;
  while (have_posts()) : the_post(); ?&#38;gt;
    &#38;lt;h2&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot; title=&#38;quot;Permanent Link to &#38;lt;?php the_title_attribute(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h2&#38;gt;
    &#38;lt;?php
    $count++;
    if ($count &#38;lt;= 1) {
      the_content(); // display the full content of the first two posts only
    } else {
      the_excerpt;
    } // if ($count
  } // while (have_posts
} // if (have_poss
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also see &#60;a href=&#34;http://www.google.com/search?q=wordpress+full+content+first+post+excerpt+for+rest&#34; rel=&#34;nofollow&#34;&#62;http://www.google.com/search?q=wordpress+full+content+first+post+excerpt+for+rest&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>vinuel on "All posts excerpt except the first"</title>
<link>http://wordpress.org/support/topic/333826#post-1288051</link>
<pubDate>Fri, 20 Nov 2009 14:24:42 +0000</pubDate>
<dc:creator>vinuel</dc:creator>
<guid isPermaLink="false">1288051@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi there,&#60;br /&#62;
I’ve searched the forum but I couldn’t find a solution for this:&#60;br /&#62;
On my front page I want a list of my latest posts and it shall be shown as excerpt ( the_excerpt(); ). Only the first article shall be shown in whole ( the_content(); ). Isn’t there an easy if/else-way to realize this?&#60;br /&#62;
I’ve found something like this:&#60;/p&#62;
&#60;p&#62;if (is_post()) {&#60;br /&#62;
 global $more;&#60;br /&#62;
 $more = 1;&#60;br /&#62;
 the_content();&#60;br /&#62;
} else the_excerpt();&#60;/p&#62;
&#60;p&#62;but it just show me one article as excerpt.
&#60;/p&#62;</description>
</item>
<item>
<title>then2s on "Inline PHP for Wordpress 2.8.6 (Conditional)"</title>
<link>http://wordpress.org/support/topic/333634#post-1287394</link>
<pubDate>Thu, 19 Nov 2009 22:04:04 +0000</pubDate>
<dc:creator>then2s</dc:creator>
<guid isPermaLink="false">1287394@http://wordpress.org/support/</guid>
<description>&#60;p&#62;UPDATE: I fixed the problem by the help of this post ( &#60;a href=&#34;http://wordpress.org/support/topic/281992?replies=3#post-1150732&#34;&#62;http://wordpress.org/support/topic/281992?replies=3#post-1150732&#60;/a&#62; )&#60;/p&#62;
&#60;p&#62;OPEN: plugin folder - exec-php/include/runtime.php&#60;br /&#62;
FIND:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function filter_user_content($content)
	{
		global $post;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;ADD AFTER:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;if(strpos($content,&#38;#39;&#38;lt; ?php &#38;#39;)!==FALSE)
	{
		$content=str_replace(&#38;#39;&#38;lt; ?php&#38;#39;,&#38;#39;&#38;lt;?php&#38;#39;,$content);
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;HUGE THANKS TO mmorpglife!!!! &#60;a href=&#34;http://wordpress.org/support/topic/281992?replies=3#post-1150732&#34;&#62;http://wordpress.org/support/topic/281992?replies=3#post-1150732&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>then2s on "Inline PHP for Wordpress 2.8.6 (Conditional)"</title>
<link>http://wordpress.org/support/topic/333634#post-1287380</link>
<pubDate>Thu, 19 Nov 2009 21:41:22 +0000</pubDate>
<dc:creator>then2s</dc:creator>
<guid isPermaLink="false">1287380@http://wordpress.org/support/</guid>
<description>&#60;p&#62;WORDPRESS VERSION: 2.8.6 (I just did an upgrade from 2.7. everything was working GREAT with 2.7!!)&#60;/p&#62;
&#60;p&#62;INLINE PHP TO RUN (pasted on the first line of EVERY article):&#60;br /&#62;
&#38;lt; ?php if (is_single()) { ?&#38;gt;&#60;br /&#62;
&#38;lt; ?php include (TEMPLATEPATH . '/ads-single-top.php'); ?&#38;gt;&#60;br /&#62;
&#38;lt; ?php } ?&#38;gt;&#60;br /&#62;
(which basically is a conditional php code that includes adsense ONLY when viewing the article in single.php)&#60;/p&#62;
&#60;p&#62;The php works great when viewing the article in single.php.. but once it comes to index.php.. it doesnt work. On index.hph I am using &#34;&#38;lt;?php the_excerpt() ?&#38;gt;&#34;&#60;/p&#62;
&#60;p&#62;I tried searching for plugins that RUN PHP INLINE code.. and they work.. but only on single.php (like I said before)
&#60;/p&#62;</description>
</item>
<item>
<title>sickanlou on "show image in arcive"</title>
<link>http://wordpress.org/support/topic/333024#post-1285401</link>
<pubDate>Wed, 18 Nov 2009 09:31:59 +0000</pubDate>
<dc:creator>sickanlou</dc:creator>
<guid isPermaLink="false">1285401@http://wordpress.org/support/</guid>
<description>&#60;p&#62;i want to show the whole post including image when looking att my posts in the arcive but im lost trying to change the excerpt in arcive.php.. &#60;/p&#62;
&#60;p&#62;Can you help?&#60;/p&#62;
&#60;p&#62;/Jessica
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "Activate automatic excerpts?"</title>
<link>http://wordpress.org/support/topic/332309#post-1283207</link>
<pubDate>Mon, 16 Nov 2009 16:10:20 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1283207@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Edit your theme's index.php file and replace &#60;code&#62;&#38;lt;?php the_content();?&#38;gt;&#60;/code&#62; with &#60;code&#62;&#38;lt;?php the_excerpt();?&#38;gt;&#60;/code&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>Ponkass on "Activate automatic excerpts?"</title>
<link>http://wordpress.org/support/topic/332309#post-1283081</link>
<pubDate>Mon, 16 Nov 2009 15:09:59 +0000</pubDate>
<dc:creator>Ponkass</dc:creator>
<guid isPermaLink="false">1283081@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I can't find where to enable automatic excerpts! All I want to do is have the front page always display 55 character excerpts on each post with a &#34;read more&#34;-link at the end, WITHOUT having to use the MORE-TAG when doing a post! &#60;/p&#62;
&#60;p&#62;Please help.
&#60;/p&#62;</description>
</item>
<item>
<title>equalmark on "hiding lists from excerpts"</title>
<link>http://wordpress.org/support/topic/331941#post-1282044</link>
<pubDate>Sun, 15 Nov 2009 13:31:38 +0000</pubDate>
<dc:creator>equalmark</dc:creator>
<guid isPermaLink="false">1282044@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Why not add a specific class around the excerpt and then set lists within that class to display none.  Like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;excerpt&#38;quot;&#38;gt;

  &#38;lt;?php the_excerpt(); ?&#38;gt;

&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then in your CSS try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.excerpt ul, .excerpt ol {
  display: none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That will prevent them from showing all together.  To just hide the bullet point or the numbers use this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.excerpt ul, .excerpt ol {
  list-style-type: none;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>mjfus on "How do I create Excerpt Previews"</title>
<link>http://wordpress.org/support/topic/302813#post-1282028</link>
<pubDate>Sun, 15 Nov 2009 13:07:10 +0000</pubDate>
<dc:creator>mjfus</dc:creator>
<guid isPermaLink="false">1282028@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Can someone direct me on where to place 'the_content' tag? I'm trying to display the full text of a post on my homepage page using the code below:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
global $more;    // Declare global $more (before the loop).&#60;br /&#62;
$more = 1;       // Set (inside the loop) to display all content, including text below more.&#60;br /&#62;
the_content();&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;I don't know where to put this code, because I'm using a template that doesn't have &#38;lt;?php the_content(); ?&#38;gt; or &#38;lt;?php the_excerpt(); ?&#38;gt;&#60;br /&#62;
in the index.php file. All that's in the index.php file is:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
global $options;&#60;br /&#62;
foreach ($options as $value) {&#60;br /&#62;
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }&#60;br /&#62;
}&#60;br /&#62;
	if($swift_magzine=='magzine') include('layouts/magzine.php');&#60;br /&#62;
	else include('layouts/blog.php');&#60;br /&#62;
?&#38;gt;.
&#60;/p&#62;</description>
</item>
<item>
<title>kaneesha on "hiding lists from excerpts"</title>
<link>http://wordpress.org/support/topic/331941#post-1281902</link>
<pubDate>Sun, 15 Nov 2009 06:48:11 +0000</pubDate>
<dc:creator>kaneesha</dc:creator>
<guid isPermaLink="false">1281902@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hello,&#60;br /&#62;
how can i hide lists (li/ol/list_style_type) from excerpts in wordpress?&#60;/p&#62;
&#60;p&#62;thanks in advance
&#60;/p&#62;</description>
</item>
<item>
<title>csander on "Post Excerpts on a Page"</title>
<link>http://wordpress.org/support/topic/331806#post-1281620</link>
<pubDate>Sat, 14 Nov 2009 22:06:45 +0000</pubDate>
<dc:creator>csander</dc:creator>
<guid isPermaLink="false">1281620@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey, thanks! That really helped me out!
&#60;/p&#62;</description>
</item>
<item>
<title>MichaelH on "Post Excerpts on a Page"</title>
<link>http://wordpress.org/support/topic/331806#post-1281466</link>
<pubDate>Sat, 14 Nov 2009 18:36:50 +0000</pubDate>
<dc:creator>MichaelH</dc:creator>
<guid isPermaLink="false">1281466@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Look at the Page of Posts example in the &#60;a href=&#34;http://codex.wordpress.org/Pages&#34;&#62;Pages article&#60;/a&#62; and use the &#60;a href=&#34;http://codex.wordpress.org/Template_Tags&#34;&#62;template tag&#60;/a&#62;, &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/the_excerpt&#34;&#62;the_excerpt()&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Related:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Stepping_Into_Template_Tags&#34;&#62;Stepping Into Template Tags&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Stepping_Into_Templates&#34;&#62;Stepping Into Templates&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Template_Hierarchy&#34;&#62;Template Hierarchy&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Excerpt&#34;&#62;Excerpt&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/list-category-posts/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/list-category-posts/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>csander on "Post Excerpts on a Page"</title>
<link>http://wordpress.org/support/topic/331806#post-1281455</link>
<pubDate>Sat, 14 Nov 2009 18:22:23 +0000</pubDate>
<dc:creator>csander</dc:creator>
<guid isPermaLink="false">1281455@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm trying to get my posts, or at least excerpts from my posts - to display on this page: &#60;a href=&#34;http://www.wujimedia.com/wujimedia-blog/&#34; rel=&#34;nofollow&#34;&#62;http://www.wujimedia.com/wujimedia-blog/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Does anyone have a place for me to start? &#60;/p&#62;
&#60;p&#62;I would like to write a post and have it automatically display on that page. Is that possible? &#60;/p&#62;
&#60;p&#62;Thanks for any help you can provide. I appreciate it!!&#60;/p&#62;
&#60;p&#62;Craig
&#60;/p&#62;</description>
</item>
<item>
<title>reven on "Trackback excerpt not relevant"</title>
<link>http://wordpress.org/support/topic/331750#post-1281195</link>
<pubDate>Sat, 14 Nov 2009 14:01:22 +0000</pubDate>
<dc:creator>reven</dc:creator>
<guid isPermaLink="false">1281195@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Recently I've noticed that trackback excerpts are not really relevant to the content of the page sending the ping, whether this be my own page or another page.&#60;/p&#62;
&#60;p&#62;For example, the link text usually is something like &#34;Previous Post title &#124; Next Post title&#34; and the actual text something like &#34;Post title&#34;. Not only is this not relevant to the post, but is also misleading.&#60;/p&#62;
&#60;p&#62;It seems that the content of the page is not really detected, it just starts getting text from the beginning of the page (the navigation links being the link text being an example of that).&#60;/p&#62;
&#60;p&#62;Has there been any recent changes to the trackback functions? I have a highly customized template, so I wanted to check if this is just happening to me or is it generalized. Also, any clue as to where I should start checking for an answer (which functions are involved) would be highly appreciated.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "can I show the full text of posts, but an excerpt of pages?"</title>
<link>http://wordpress.org/support/topic/331328#post-1280681</link>
<pubDate>Fri, 13 Nov 2009 22:21:20 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1280681@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Try:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( $post-&#38;gt;post_type != &#38;#39;page&#38;#39; ) the_excerpt;
else the_content; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>calciumwaste on "can I show the full text of posts, but an excerpt of pages?"</title>
<link>http://wordpress.org/support/topic/331328#post-1280559</link>
<pubDate>Fri, 13 Nov 2009 20:21:57 +0000</pubDate>
<dc:creator>calciumwaste</dc:creator>
<guid isPermaLink="false">1280559@http://wordpress.org/support/</guid>
<description>&#60;p&#62;not sure why, but the full page still shows when I try that.&#60;/p&#62;
&#60;p&#62;On another of my blogs, I used some plugin to customize the excerpt. I think my best option is to use that and keep &#38;lt;?php the_excerpt; ?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>esmi on "can I show the full text of posts, but an excerpt of pages?"</title>
<link>http://wordpress.org/support/topic/331328#post-1280079</link>
<pubDate>Fri, 13 Nov 2009 15:03:06 +0000</pubDate>
<dc:creator>esmi</dc:creator>
<guid isPermaLink="false">1280079@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Try using:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if( is_page() ) the_excerpt;
else the_content; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>calciumwaste on "can I show the full text of posts, but an excerpt of pages?"</title>
<link>http://wordpress.org/support/topic/331328#post-1279807</link>
<pubDate>Fri, 13 Nov 2009 08:59:40 +0000</pubDate>
<dc:creator>calciumwaste</dc:creator>
<guid isPermaLink="false">1279807@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I edited my theme so that the search results page would show the full text of posts (with images and active links), but now it also shows the full text of pages.  My posts are all short and the images and links are essential, but some of my pages are quite long.  Is it possible to show the full text post but an excerpt for pages?&#60;/p&#62;
&#60;p&#62;all I did was replace &#38;lt;?php the_excerpt; ?&#38;gt; with &#38;lt;?php the_content; ?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>mixdmatt on "Search results - Remove &#60;h1&#62;"</title>
<link>http://wordpress.org/support/topic/331001#post-1278907</link>
<pubDate>Thu, 12 Nov 2009 16:48:02 +0000</pubDate>
<dc:creator>mixdmatt</dc:creator>
<guid isPermaLink="false">1278907@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have figured it out now. &#60;strong&#62;get_the_excerpt&#60;/strong&#62; strips out HTML tags anyway so the Reg-ex was looking for a &#38;lt;h1&#38;gt; that wasn't there&#60;/p&#62;
&#60;p&#62;I used this in the end&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $little_excerpt = trim(substr(strip_tags(preg_replace(&#38;quot;/(&#38;lt;h1&#38;gt;.*?&#38;lt;\/h1&#38;gt;&#124;\[.*\])/m&#38;quot;,&#38;quot;&#38;quot;,get_the_content())),0,200)).&#38;quot;...&#38;quot;; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Which also strips out any shortcodes :-)
&#60;/p&#62;</description>
</item>
<item>
<title>mixdmatt on "Search results - Remove &#60;h1&#62;"</title>
<link>http://wordpress.org/support/topic/331001#post-1278680</link>
<pubDate>Thu, 12 Nov 2009 13:48:02 +0000</pubDate>
<dc:creator>mixdmatt</dc:creator>
<guid isPermaLink="false">1278680@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hey all&#60;/p&#62;
&#60;p&#62;I've got a search results page on which I'm outputting the title of the post/page with an excerpt below.&#60;/p&#62;
&#60;p&#62;At present I'm using this function to trim &#60;strong&#62;the_excerpt&#60;/strong&#62; down to 250 characters and follow with a '...' :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $little_excerpt = trim(substr(strip_tags(get_the_excerpt()),0,250)).&#38;quot;...&#38;quot;; ?&#38;gt;
&#38;lt;?php echo $little_excerpt; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This works, even if there is no excerpt specified for the post (WP generates it automatically am I right?)&#60;/p&#62;
&#60;p&#62;The problem I'm having is that all my post content entries start with &#38;lt;h1&#38;gt;Page title&#38;lt;/h1&#38;gt; so when my excerpt is output I get something like this:&#60;/p&#62;
&#60;p&#62;&#60;em&#62;Expertise In Action Our flexible, professional training has produced great results for diverse organisations&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Because my post content looks like this&#60;br /&#62;
&#60;code&#62;&#38;lt;h1&#38;gt;Expertise In Action&#38;lt;/h1&#38;gt;&#38;lt;p&#38;gt;Our flexible, professional training has produced great results for diverse organisations&#38;lt;/p&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;As the h1 and page title are the same in most cases what I'm trying to do is strip out the &#38;lt;h1&#38;gt; and output everything past this i.e.&#60;/p&#62;
&#60;p&#62;&#60;em&#62;Our flexible, professional training has produced great results for diverse organisations&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;I've tried using PHP preg_replace such as this&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php $little_excerpt = trim(substr(strip_tags(preg_replace(&#38;quot;&#38;lt;h1&#38;gt;.*?&#38;lt;\/h1&#38;gt;&#38;quot;,&#38;quot;&#38;quot;,get_the_excerpt())),0,200)).&#38;quot;...&#38;quot;; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;But I get an &#60;em&#62;Unknown modifier '.'&#60;/em&#62; error.&#60;/p&#62;
&#60;p&#62;Can anyone provide me with a function which can achieve what I'm after?&#60;/p&#62;
&#60;p&#62;Thanks in advance&#60;br /&#62;
Matt
&#60;/p&#62;</description>
</item>
<item>
<title>bencharity on "Display post excerpts without images."</title>
<link>http://wordpress.org/support/topic/329234#post-1277096</link>
<pubDate>Wed, 11 Nov 2009 06:24:45 +0000</pubDate>
<dc:creator>bencharity</dc:creator>
<guid isPermaLink="false">1277096@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Ok I have acheived my goal using this snip of code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
query_posts(&#38;#39;showposts=2&#38;amp;cat=7&#38;#39;);
while(have_posts()) : the_post();
?&#38;gt;

	&#38;lt;div class=&#38;quot;similarSingle&#38;quot;&#38;gt;
		&#38;lt;h5&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink() ?&#38;gt;&#38;quot; rel=&#38;quot;bookmark&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/h5&#38;gt;

		&#38;lt;?php the_excerpt(); ?&#38;gt;

	&#38;lt;/div&#38;gt;  &#38;lt;!-- end .similarSingle --&#38;gt;

&#38;lt;?php endwhile; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However I'm not sure why this works when the other does not.  I'd love to actually learn why instead of just using this blindly.  Any wise words would be welcome!
&#60;/p&#62;</description>
</item>
<item>
<title>fifthhouse on "I want to exclude certain categories from having excerpt"</title>
<link>http://wordpress.org/support/topic/330314#post-1276506</link>
<pubDate>Tue, 10 Nov 2009 17:21:13 +0000</pubDate>
<dc:creator>fifthhouse</dc:creator>
<guid isPermaLink="false">1276506@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I am using the excerpt tag to create excerpts, which works beautifully. But I have a bunch of categories with videos, and don't want the excerpt for posts in those categories. Is this possible?
&#60;/p&#62;</description>
</item>
<item>
<title>LukeStrosnider on "need help adding "read more" to excerpt"</title>
<link>http://wordpress.org/support/topic/330286#post-1276409</link>
<pubDate>Tue, 10 Nov 2009 16:14:25 +0000</pubDate>
<dc:creator>LukeStrosnider</dc:creator>
<guid isPermaLink="false">1276409@http://wordpress.org/support/</guid>
<description>&#60;p&#62;hey all ...&#60;/p&#62;
&#60;p&#62;so i read &#60;a href=&#34;http://codex.wordpress.org/Customizing_the_Read_More&#34;&#62;Customizing the Read More&#60;/a&#62; in the Codex, but I can't figure this out ...&#60;/p&#62;
&#60;p&#62;i'm using this snippet of code on my Main Index to show my entire first post and then excerpts of the subsequent posts:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php ($post == $posts[0] &#38;amp;&#38;amp; !is_paged()) ? the_content(&#38;#39;&#38;#39;, &#38;#39;FALSE&#38;#39;) : the_excerpt() ; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;i'd like for the subsequent posts to include a &#34;Read more ...&#34; link. i have this code (see below), but I can't figure out how to integrate it with the above code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php the_excerpt(); ?&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;read_more&#38;quot;&#38;gt;[ more ... ]&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Plain English: On my homepage, I'd like the first post to be shown in its entirety, and each subsequent post to be an excerpt with a &#34;Read more ...&#34; link. &#60;/p&#62;
&#60;p&#62;My site: &#60;a href=&#34;http://www.touchingharmstheart.com&#34;&#62;Touching Harms The Art&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks a million for any help / advice.
&#60;/p&#62;</description>
</item>
<item>
<title>rbeazley on "excerpt or post summaries"</title>
<link>http://wordpress.org/support/topic/313738#post-1274864</link>
<pubDate>Mon, 09 Nov 2009 03:29:12 +0000</pubDate>
<dc:creator>rbeazley</dc:creator>
<guid isPermaLink="false">1274864@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thank you! This REALLY helped me!
&#60;/p&#62;</description>
</item>
<item>
<title>ThemeLady on "the_excerpt_reloaded or Equivalent?"</title>
<link>http://wordpress.org/support/topic/329488#post-1274057</link>
<pubDate>Sun, 08 Nov 2009 08:08:21 +0000</pubDate>
<dc:creator>ThemeLady</dc:creator>
<guid isPermaLink="false">1274057@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm refreshing my knowledge of HTML and CSS, along with WordPress, after not doing so for a couple of years.  I just searched for a plugin I'd previously used, but it's not coming up:  the_excerpt_reloaded.  I did see a plugin that says it's used &#34;in conjunction&#34; with the_excerpt_reloaded, but didn't see the_excerpt_reloaded itself.  Are any of the other excerpt plugins similar?  There were several, and I'm not sure which is right for me.  Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
