Title: RSS Excerpt
Last modified: August 19, 2016

---

# RSS Excerpt

 *  Resolved [Jabbok](https://wordpress.org/support/users/jabbok/)
 * (@jabbok)
 * [17 years, 5 months ago](https://wordpress.org/support/topic/rss-excerpt/)
 * I’m using the following code to pull the HEADLINES from another blog. I would
   like to include and excerpt of the blog post as well. Can anyone tell me what
   to add to the code to get this done?
 *     ```
       <?php
       require_once (ABSPATH . WPINC . '/rss.php');
       // insert the feed URL here
       $rss = @fetch_rss('http://feeds.feedburner.com/blogspot/LTnB');
       if ( isset($rss->items) && 0 != count($rss->items) ) {
       ?>
       <?php
        // set the number of items from the feed to display (10)
       $rss->items = array_slice($rss->items, 0, 6);
       foreach ($rss->items as $item ) {
       ?>
       <a href='<?php echo wp_filter_kses($item['link']); ?>'>
       <?php echo wp_specialchars($item['title']); ?>
       </a>
       <?php } ?>
       <?php } ?>
       ```
   

Viewing 1 replies (of 1 total)

 *  Thread Starter [Jabbok](https://wordpress.org/support/users/jabbok/)
 * (@jabbok)
 * [17 years, 5 months ago](https://wordpress.org/support/topic/rss-excerpt/#post-955606)
 * I searched for DAYS for a solution to my need and finally found one in the first
   place I should have looked.
 * Feedburner has everything you need to add 50,100 or 150 word excerpts to your
   RSS feeds. It was exactly what I needed.
 * WordPress has become SOOOOOO large that it has become extremely difficult to 
   find what you’re looking for with a simple google search.

Viewing 1 replies (of 1 total)

The topic ‘RSS Excerpt’ is closed to new replies.

 * 1 reply
 * 1 participant
 * Last reply from: [Jabbok](https://wordpress.org/support/users/jabbok/)
 * Last activity: [17 years, 5 months ago](https://wordpress.org/support/topic/rss-excerpt/#post-955606)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
