nginx-helper icon indicating copy to clipboard operation
nginx-helper copied to clipboard

Add filters to exclude post types

Open gutobenn opened this issue 8 months ago • 2 comments

This PR adds two filters for disabling post types from triggering a purge.

In my case I am using it to exclude woocommerce orders:

add_filter( 'rt_nginx_helper_exclude_post_types', function( $post_types ) { $post_types[] = 'shop_order'; return $post_types; } );
add_filter( 'rt_nginx_helper_comment_change_exclude_post_types', function( $post_types ) { $post_types[] = 'shop_order'; return $post_types; } );

gutobenn avatar Jun 25 '24 13:06 gutobenn