How to Add Another Full Text Service to Use with Feed to Post

If you wish to change or add the full text RSS services used by the plugin, you may use the filter shown below. This permits you to have your own full text RSS import system, and use that one instead of, or in addition to,  our premium service.

NOTE: the order of the services in the filter is important, since our plugin will try using the services one by one, and the first service to successfully return a valid feed will be used.

Changing the services used by the plugin

add_filter('wprss_ftp_full_text_sources','my_full_text_rss_sources');function my_full_text_rss_sources( $sources ) {   return array(
     'http://mysource.com/',
       'http://anotherservice.com/?feed='
   );
}

Adding services to the plugin’s existing built-in services

add_filter('wprss_ftp_full_text_sources','my_full_text_rss_sources');function my_full_text_rss_sources( $sources ) {   return array_merge(
       $sources,
   array(
       'http://mysource.com/',
           'http://anotherservice.com/?feed='
   ),
 );
}

Still need help? Contact Us Contact Us