Title: Replace content
Last modified: May 30, 2022

---

# Replace content

 *  Resolved [Enhance](https://wordpress.org/support/users/skariko/)
 * (@skariko)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/replace-content-4/)
 * Hello,
    I need to replace some content from the feed. I use this code (i know
   it works with function “`the_content`“):
 *     ```
       function replace_content2($excerpt) {
         $replace = array(
       	'comments' => 'commenti',
       	'submitted' => 'Postato da',
         );
   
         $excerpt = str_replace(array_keys($replace), $replace, $excerpt);
         return $excerpt;
       }
   
       add_filter('super-rss-reader','replace_content2');
       /** FIX WORDS */
       ```
   
 * But it seems don’t works. Do you know which function can I use instead of `super-
   rss-reader`?
 * Thanks.

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

 *  Thread Starter [Enhance](https://wordpress.org/support/users/skariko/)
 * (@skariko)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/replace-content-4/#post-15692262)
 * Find out, it is: `srr_mod_item_html` 🙂
 *  Plugin Author [vaakash](https://wordpress.org/support/users/vaakash/)
 * (@vaakash)
 * [3 years, 12 months ago](https://wordpress.org/support/topic/replace-content-4/#post-15692454)
 * Hi [@skariko](https://wordpress.org/support/users/skariko/),
 * Glad that you found out. This filter is documented on the page below.
 * [https://www.aakashweb.com/docs/super-rss-reader/actions-filters/](https://www.aakashweb.com/docs/super-rss-reader/actions-filters/)
 * Thanks,
    Aakash

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

The topic ‘Replace content’ is closed to new replies.

 * ![](https://ps.w.org/super-rss-reader/assets/icon-256x256.png?rev=1749446)
 * [Super RSS Reader - Add attractive RSS Feed Widget](https://wordpress.org/plugins/super-rss-reader/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/super-rss-reader/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/super-rss-reader/)
 * [Active Topics](https://wordpress.org/support/plugin/super-rss-reader/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/super-rss-reader/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/super-rss-reader/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [vaakash](https://wordpress.org/support/users/vaakash/)
 * Last activity: [3 years, 12 months ago](https://wordpress.org/support/topic/replace-content-4/#post-15692454)
 * Status: resolved