Title: Keyword from content?
Last modified: August 22, 2016

---

# Keyword from content?

 *  Resolved [tichy1967](https://wordpress.org/support/users/tichy1967/)
 * (@tichy1967)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/)
 * Hello is it possible to change the code so that they keywords can be in the feeds
   content instead of just the title?
 * [https://wordpress.org/plugins/feedzy-rss-feeds/](https://wordpress.org/plugins/feedzy-rss-feeds/)

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

 *  Thread Starter [tichy1967](https://wordpress.org/support/users/tichy1967/)
 * (@tichy1967)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748035)
 * Also the keyword is case sensitive
 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748290)
 * Hi Tichy,
    I’m a bit busy for the moment, but i’ll create a new hook for this
   in the next release. Cheers
 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748326)
 * Hi again,
    I have a solution to your request. Since last version (2.3) you can
   use the feedzy_item_keyword. Here is an example:
 *     ```
       function bweb_feedzy_feed_item_keywords_content( $continue, $keywords_title, $item, $feedURL ){
           if( 'http://b-website.com/feed' == $feedURL ) {
               $continue = false;
               $keywords_content = array( 'keyword', 'KEYWORD' );
               foreach ( $keywords_content as $keyword ) {
                   if ( strpos( $item->get_description(), $keyword ) !== false ) {
                       $continue = true;
                   }
               }
           }
           return $continue;
       }
       add_filter('feedzy_item_keyword', 'bweb_feedzy_feed_item_keywords_content', 9, 4);
       ```
   
 * Full documentation is here: [FEEDZY RSS Feeds – Available Hooks](http://b-website.com/feedzy-rss-feeds-available-hooks-examples)
 *  Thread Starter [tichy1967](https://wordpress.org/support/users/tichy1967/)
 * (@tichy1967)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748345)
 * Thank you very much for taking the time to add this into your plugin the only
   thing i think you should add to your plugin is a pagination and it will be complete!
 *  [Brice Capobianco](https://wordpress.org/support/users/brikou/)
 * (@brikou)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748347)
 * You’re welcome.
    Pagination is not on the list, but tab layout for multiple feeds
   is 😉
 *  Thread Starter [tichy1967](https://wordpress.org/support/users/tichy1967/)
 * (@tichy1967)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748351)
 * do you reckon you will ever add that feature?

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

The topic ‘Keyword from content?’ 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/)

 * 6 replies
 * 2 participants
 * Last reply from: [tichy1967](https://wordpress.org/support/users/tichy1967/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/keyword-from-content/#post-5748351)
 * Status: resolved