Advertisement
matoni555

WordPress - clear cache on post / page update

May 7th, 2020
1,249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_action( 'save_post', 'matosoft_clear_cache', 10, 3 );
  2.  
  3. function matosoft_clear_cache( $post_id, $post, $update ) {
  4.     if (has_action('ce_clear_cache')) {
  5.         do_action('ce_clear_cache');
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement