Title: [Plugin: Special Recent Posts] Custom Excerpt Display
Last modified: August 20, 2016

---

# [Plugin: Special Recent Posts] Custom Excerpt Display

 *  Resolved [riomurphy](https://wordpress.org/support/users/riomurphy/)
 * (@riomurphy)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/)
 * The prior version allowed me to use the shortcode and display recent posts with
   thumbnails and custom excerpts. (See [http://masterful-marketing.com/](http://masterful-marketing.com/)
   home page bottom).
 * When I upgraded, no matter what I tried, it didn’t pull the excerpt. When I use
   it as a widget, not as big a deal because I normally don’t use excerpts but on
   the pages using the shortcode, I want to use the excerpt I write so it makes 
   sense.
 * I used:
 * post_content_length_mode=’fullexcerpt’
    post_content_mode=’titleexcerpt’
 * in the shortcode (along with other options which worked like thumbnail height
   and width and date).
 * Did I miss something?
 * Thanks
 * [http://wordpress.org/extend/plugins/special-recent-posts/](http://wordpress.org/extend/plugins/special-recent-posts/)

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/page/2/?output_format=md)

 *  Plugin Author [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * (@lgrandicelli)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007215)
 * Ok can you please paste here the full shortcode? Version 1.9.5 has a new set 
   of shortcode options but it still mantain a backward compatibility with theold
   shortcodes options.
 *  Thread Starter [riomurphy](https://wordpress.org/support/users/riomurphy/)
 * (@riomurphy)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007261)
 * Hi Luca,
 * Sure. Here’s the original that when the plugin updated didn’t show the excerpt:
 * [srp srp_number_post_option=’3′ srp_widget_title_hide_option=’yes’ srp_thumbnail_option
   =’yes’ srp_wdg_title_length_mode=’fulltitle’ srp_wdg_excerpt_length_mode=’fullexcerpt’]
 * So I redid it with the new options as follows:
 * [srp post_limit=’3′ widget_title_hide=’yes’ display_thumbnail=’yes’ thumbnail_width
   =’150′ thumbnail_height=’150′ post_content_type=’excerpt’ post_content_length_mode
   =’fullexcerpt’ post_title_length_mode=’fulltitle’ post_content_mode=’titleexcerpt’
   string_break=’More »’ date_format=’F j, Y’]
 * Everything seems to be working except the excerpt.
 * thanks for your quick response!
 *  Plugin Author [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * (@lgrandicelli)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007301)
 * Ok i think i got it:
    version 1.9.5 has introduced a new option which lets you
   choose whether or not to display post content or post excerpt in the output list.
   By default this value is set to “post content”. Thus, in your case, you need 
   to add an extra parameter to your shortcode, like this:
 * ‘post_content_type’ = ‘excerpt’
 * Let me know if this works 🙂
 *  Thread Starter [riomurphy](https://wordpress.org/support/users/riomurphy/)
 * (@riomurphy)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007315)
 * Hi Luca,
 * I included that option in the updated version – it’s in the 2nd line if you look
   in the last post from me. It still didn’t work.
 * Do I need to put ” around the option itself or just the value?
 *  [BaronHigbee](https://wordpress.org/support/users/baronhigbee/)
 * (@baronhigbee)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007326)
 * Having the same problem, and as far as I can tell it’s due to post_content_length_mode
   =’fullexcerpt’. All of the others options for post_content_length_mode work fine
   but ‘fullexcerpt’ is outputting nothing; i.e. no custom excerpts.
 *  [BaronHigbee](https://wordpress.org/support/users/baronhigbee/)
 * (@baronhigbee)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007330)
 * Additionally –
 * In the Widget version under “POSTS OPTIONS > Select Post Content Type”, there
   is an option for “Post Excerpt” however under “POSTS OPTIONS > Cut Post Content
   After” there is no option for “Full Excerpt”.
 * Hope those things help narrow down the bugs! I love this plugin, and tho I’ll
   have to rework everything I’ve integrated, the added options are awesome 😀
 *  [BaronHigbee](https://wordpress.org/support/users/baronhigbee/)
 * (@baronhigbee)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007333)
 * More info after additional testing –
 * WIDGET >
    Using “Post Excerpt” and “Use the full content” DOES give out the entire
   excerpt BUT it ignores any special characters or HTML, so the customization is
   gone.
 * SHORTCODE >
    I took a stab at using ‘fullcontent’ instead of ‘fullexcerpt’ for
   the content length mode and was able to at least reproduce the way the widget
   behaves, however still no special characters or HTML.
 * So –
 * post_content_length_mode=’fullexcerpt’
    > DOES NOT WORK; i.e. displays nothing
 * post_content_length_mode=’fullcontent’
    > WORKS BUT IGNORES ALL SPECIAL FORMATTING
 *  Plugin Author [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * (@lgrandicelli)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007345)
 * Ok my fault 🙂
    there is an error on the documentation.
 * The correct value is post_content_length_mode is ‘fullcontent’ and not ‘fullexcerpt’
   anymore.
 * so the working shortcode should be
    [srp post_content_type=’excerpt’ post_content_length_mode
   =’fullcontent’]
 * with all the other options you like. Please guys let me know this issue is resolved.
   I’ll provide to modify the documentation soon.
    Sorry about this.
 *  Plugin Author [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * (@lgrandicelli)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007346)
 * In the excerpt visualization there can’t be html characters.
 *  [BaronHigbee](https://wordpress.org/support/users/baronhigbee/)
 * (@baronhigbee)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007352)
 * Sure there can 🙂 I use it in other functions I’ve written. SRP let me pass them
   all the way through the last version, but no longer.
 * My guess would be you changed the syntax ‘ $post->post_excerpt ‘ to ‘ the_excerpt()‘.
   That function cleans out the HTML, but the variable does not.
 * I can always mod it if you won’t be adding that back in, but it was a really 
   nice part of the SRP functionality imo. Can you point me in the new direction
   of that bit of code, or do I have to dig? 😉
 *  Plugin Author [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * (@lgrandicelli)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007356)
 * The thing i don’t understand, and you will excuse me for that, is what the hell
   you’re trying to achieve. Do you want html tags in the excerpt or not? 🙂
 *  [BaronHigbee](https://wordpress.org/support/users/baronhigbee/)
 * (@baronhigbee)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007364)
 * Ah sry for the confusion…
 * Yes, I want functional HTML tags in my excerpts.
 *  Thread Starter [riomurphy](https://wordpress.org/support/users/riomurphy/)
 * (@riomurphy)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007376)
 * Thanks Luca, my stuff works now! Phew!!!
 * As for functional HTML tags, I personally don’t use them much on my site but 
   a few of my clients do. I also noted that my excerpts in the archives and main
   index do keep the formatting if it is there.
 * But I can upgrade now!
 * Cheers
 *  Plugin Author [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * (@lgrandicelli)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007398)
 * [@baronhigbee](https://wordpress.org/support/users/baronhigbee/) [@riomurphy](https://wordpress.org/support/users/riomurphy/)
 * Would you mind to put here an example of your excerpts?
 *  Thread Starter [riomurphy](https://wordpress.org/support/users/riomurphy/)
 * (@riomurphy)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/#post-3007413)
 * Luca,
 * Not sure what you want. I use the shortcode on my home page of my site. However,
   if you look at my home page (www.masterful-marketing.com) you will see the excerpts.
   The only one that has an html tag is the recent one ([http://masterful-marketing.com/relationship-marketing/](http://masterful-marketing.com/relationship-marketing/))
   where I put _ _ around the first sentence. If you look at the blog main index
   page, you will see the italics. They don’t show on the home page.
 * If you want something else, let me know.
 * thanks,

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/page/2/?output_format=md)

The topic ‘[Plugin: Special Recent Posts] Custom Excerpt Display’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/special-recent-posts_006699.svg)
 * [Special Recent Posts](https://wordpress.org/plugins/special-recent-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/special-recent-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/special-recent-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/special-recent-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/special-recent-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/special-recent-posts/reviews/)

 * 18 replies
 * 3 participants
 * Last reply from: [Luca Grandicelli](https://wordpress.org/support/users/lgrandicelli/)
 * Last activity: [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-special-recent-posts-custom-excerpt-display/page/2/#post-3007424)
 * Status: resolved