Title: Display Full HTML
Last modified: August 22, 2016

---

# Display Full HTML

 *  Resolved [Norvard Kim](https://wordpress.org/support/users/ca9ine/)
 * (@ca9ine)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/)
 * Hi Brice,
 * I’m in love with the plugin, it’s by far the cleanest and best RSS plugin around.
   
   I would however love to be able to display the full HTML content of the feeds.
   Images and links contained in the feed are currently being filtered out, and 
   I’m really interested in having them show up.
 * Is there any way to do this?
 * [https://wordpress.org/plugins/feedzy-rss-feeds/](https://wordpress.org/plugins/feedzy-rss-feeds/)

Viewing 7 replies - 1 through 7 (of 7 total)

 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890460)
 * Hi Kim,
    Thanks for message 🙂 There a hook for that :
 *     ```
       function bweb_summary_input( $description, $content, $feedURL ) {
           //If you want to use the item content as the description. If not, then remove this line
           //If feed don't have content meta, $content is already equal to $description
           $description = $content;
   
           //List of feeds you don't want to remove HTML tags
           $feedList = array (
               'http://www.gumdust.com/feed',
               'http://b-website.com/feed'
               );
   
           //Remove the item HTML tags (as in the default hook) if not in the above list
           if( !in_array( $feedURL, $feedList ) ) {
               $description = trim( strip_tags( $description ) );
           }
   
           //Remove hellip (as in the default hook)
           //Keep in mind that it will be added later in the plugin render
           $description = trim( chop( $description, '[&hellip;]' ) );
   
           return $description;
       }
       remove_filter( 'feedzy_summary_input', 'feedzy_summary_input_filter', 9 );
       add_filter( 'feedzy_summary_input', 'bweb_summary_input', 10, 3 );
       ```
   
 * [Here is all the available hooks](http://b-website.com/feedzy-rss-feeds-available-hooks-examples)
 * Cheers
 *  Thread Starter [Norvard Kim](https://wordpress.org/support/users/ca9ine/)
 * (@ca9ine)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890467)
 * Wow that was a really fast reply!
 * Do I have to alter the plugin itself?
    I’m thinking of future updates.
 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890468)
 * Absolutely not! NEVEEEEEEEEEEEEEERRRRRRRRRR 🙂
    You just have to past this function
   somewhere in your theme/child theme files (eg in functions.php). Don’t forget
   to edit the $feedList array with the URL of the feed you don’t want to strip 
   tags. Cheers
 *  Thread Starter [Norvard Kim](https://wordpress.org/support/users/ca9ine/)
 * (@ca9ine)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890469)
 * lol, hence my question 🙂
 * I did add it to my theme’s functions.php and also created a custom plugin using
   only that function -but nothing changed.
 * I am using the widget, mind you.
 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890470)
 * That’s strange…
    What’s your feed URL ?
 *  Thread Starter [Norvard Kim](https://wordpress.org/support/users/ca9ine/)
 * (@ca9ine)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890472)
 * Never mind…
 * I’m not yet fully awake -I typed htttp…
    It’s all OK now! Now come the CSS tweaks
   to make this perfect!
 * Thanks Brice, excellent support!
 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890473)
 * Glad I could help 😉

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Display Full HTML’ is closed to new replies.

 * ![](https://ps.w.org/feedzy-rss-feeds/assets/icon-256x256.gif?rev=3418285)
 * [RSS Aggregator by Feedzy – Feed to Post, Autoblogging, News & YouTube Video Feeds Aggregator](https://wordpress.org/plugins/feedzy-rss-feeds/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/feedzy-rss-feeds/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/feedzy-rss-feeds/)
 * [Active Topics](https://wordpress.org/support/plugin/feedzy-rss-feeds/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/feedzy-rss-feeds/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/feedzy-rss-feeds/reviews/)

## Tags

 * [feedzy](https://wordpress.org/support/topic-tag/feedzy/)
 * [images](https://wordpress.org/support/topic-tag/images/)
 * [RSS](https://wordpress.org/support/topic-tag/rss/)

 * 7 replies
 * 2 participants
 * Last reply from: [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/display-full-html/#post-5890473)
 * Status: resolved