WordPress caching issue

Problem solved. Had two pages with the same content, and slightly different names, and I was updating the other one.

Can a WordPress blog be entirely hosted on a CDN if cached?

Yes, making static version of WP blog is definite possibility. I would advise against using caching plugins for that — it’s not their purpose and a lot of their functionality tends to depend on elaborate rewrite rules, which you won’t be able to replicate on CDN. There are dedicated WP solutions (none that I have … Read more

How do I fetch feed info from cache instead of directly from feed?

You could simply use fetch_feed() that implements it’s own extension of SimplePie_Cache: $feed = new SimplePie(); … $feed->set_cache_class( ‘WP_Feed_Cache’ ); … $feed->set_feed_url( $url ); … $feed->set_cache_duration( apply_filters( ‘wp_feed_cache_transient_lifetime’, 12 * HOUR_IN_SECONDS, $url ) ); that caches the feeds with set_transient().