Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi there,
    Thanks for your message.
    Actually, cache is stored in the DB via WordPress Transients.
    It uses the native WordPress filter to store the feeds data based on their URLs. So I don’t really know if it is based on the URL without args or the full URL.

    Try the following hook :

    function bweb_feedzy_cache_duration( $feedCacheDuration, $feedURL ) {
        if( 'https://rest.ebay.com/epn/v1/find/item.rss' == $feedURL )
            return 0; //No cache
    
        return $feedCacheDuration;
    }
    add_filter( 'wp_feed_cache_transient_lifetime', 'bweb_feedzy_cache_duration', 10, 2 );

    It will disable caching on this particular feeds if your theroy is right.
    Let me know ??

    Cheers

    Thread Starter helloadorable

    (@helloadorable)

    Thanks so much for the response. I actually ended up implementing a totally custom solution so I’m not sure what the problem was. But I appreciate the response! And this plugin may come in handy for a different use some day!

    You’re welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘RSS feeds from Ebay Partner Network’ is closed to new replies.