Skip to content

Instantly share code, notes, and snippets.

@imknight
Created February 28, 2016 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imknight/c85087ebf30393274ed8 to your computer and use it in GitHub Desktop.
Save imknight/c85087ebf30393274ed8 to your computer and use it in GitHub Desktop.
Cleaning redis cache for qtranslate-X on Woocommerce Site
add_action( 'clean_post_cache', 'clean_qtranslatex_cache', 10, 2 );
function clean_qtranslatex_cache( $post_id, $post) {
//depends on what language you have turn on for your site.
wp_cache_delete( $post_id, 'post_metazh' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment