Black Friday: Up to 40% off all plans!

Offer automatically applied at checkout
Days
Hours
Minutes
Seconds

FAQs

Find answers to common questions and step-by-step solutions.

Glossary

An alphabetical list of terms and their definitions.​

Video Library

Discover our tutorials

This help doc applies to version 4. If you’re using version 5, please refer to the updated documentation here.

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

Contents

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='
   ),
 );
}
GIVE FEEDBACK

Was this article helpful?

Still stuck?

Find Your Perfect Plan

Answer a few questions, and we’ll recommend the best option for you!