WP Rocket homepage cache clear hook
// Clear the cache of specific posts after the homepage is cleared. | |
// This is useful if you have a feed of items on the homepage and other pages with the same feed. | |
// WP Rocket source: https://github.com/wp-media/wp-rocket/blob/443f2e1b902c592bd517cbaa641571bb2ddce1a5/inc/functions/files.php#L613 | |
//clean with POST ID. | |
function rocket_clean_posts_with_home_cleaning( $root = '' ) { | |
$posts_list = [ | |
1 | |
]; | |
foreach ($posts_list as $post_id) { | |
rocket_clean_post( $post_id ); | |
} | |
} | |
add_action( 'after_rocket_clean_home', 'rocket_clean_posts_with_home_cleaning' ); | |
// TODO add new function that can clean pages too |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment