Title: Cache
Last modified: August 21, 2016

---

# Cache

 *  Resolved [Artem P.](https://wordpress.org/support/users/madeinua/)
 * (@madeinua)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/cache-10/)
 * I see that plugin cleans transient on create/update/delete taxonomy. but can’t
   find action to clean it on add/update/delete post. Means I have to clean transient
   manually to see changes in the frontend.
 * [http://wordpress.org/plugins/eg-series/](http://wordpress.org/plugins/eg-series/)

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

 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425660)
 * Have you found a solution to this? Madeinua, how do you clean the transient manually?
   Sorry if this is a silly question but I am new to WordPress in general and I 
   have this same issue. I update posts but they don’t update in the [series]. Otherwise,
   I like this plugin a lot.
 *  Thread Starter [Artem P.](https://wordpress.org/support/users/madeinua/)
 * (@madeinua)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425661)
 * Corok, yes, append this code to functions.php in your theme:
 *     ```
       // fix EG-Series cache
       if(defined('EGS_PLUGIN_NAME')) {
           add_action('save_post', 'publish_post_eg_series_fix');
           function publish_post_eg_series_fix() {
               delete_transient(EGS_PLUGIN_NAME.'-series');
           }
       }
       ```
   
 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425662)
 * Wow, that was quick. Thank you very much for this!
 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425663)
 * So, is it on a change to the post that causes this code to activate/run? i.e.
   when I change the post title and save for example?
 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425664)
 * Does this code work with the WP 3.8? I only ask because I am not able to get 
   it to update. I am a rookie so that is my biggest hurdle in not knowing what 
   to look for or what I should be doing. Thanks again for your help!
 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425665)
 * Ahh, maybe it is because I am not seeing “seriesposts” update but I do see the“
   series” update on the frontend.
 * Is there code you have developed for seriesposts as well?
 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/cache-10/#post-4425666)
 * I figured it out. Thanks again for the help!
 *  [Corok](https://wordpress.org/support/users/corok/)
 * (@corok)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/cache-10/#post-4425676)
 * Well I thought I figured it out, but seriesposts do not update when a post is
   removed from a series. It just stays in the transient and stays listed within
   an post that uses that same seriespost. 🙁
 *  Plugin Author [emmanuelg](https://wordpress.org/support/users/emmanuelg/)
 * (@emmanuelg)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/cache-10/#post-4425678)
 * Hi
 * I included the cache cleaning after post edition in the version 2.1.1.
 * Emmanuel.

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

The topic ‘Cache’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/eg-series.svg)
 * [EG-Series](https://wordpress.org/plugins/eg-series/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/eg-series/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/eg-series/)
 * [Active Topics](https://wordpress.org/support/plugin/eg-series/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/eg-series/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/eg-series/reviews/)

 * 9 replies
 * 3 participants
 * Last reply from: [emmanuelg](https://wordpress.org/support/users/emmanuelg/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/cache-10/#post-4425678)
 * Status: resolved