Skip to content

Instantly share code, notes, and snippets.

@lukecav
Created March 12, 2019 19:40
Show Gist options
  • Save lukecav/59a9fd5071cdf96010e88f3069009f6e to your computer and use it in GitHub Desktop.
Save lukecav/59a9fd5071cdf96010e88f3069009f6e to your computer and use it in GitHub Desktop.
Preload product categories in WooCommerce when using WP Super Cache
add_filter( 'wp_cache_preload_taxonomies', 'wpsc_preload_taxonomies' );
function wpsc_preload_taxonomies( $taxes ) {
return array_merge( $taxes, array( 'product_tag' => 'product_tag', 'product_cat' => 'product_cat' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment