Skip to content

Instantly share code, notes, and snippets.

@webtrainingwheels
Created July 16, 2019 16:20
Show Gist options
  • Save webtrainingwheels/11d9df0a068f97b0bcc3c18625dae2e7 to your computer and use it in GitHub Desktop.
Save webtrainingwheels/11d9df0a068f97b0bcc3c18625dae2e7 to your computer and use it in GitHub Desktop.
Clear and preload a specific page
<?php
// Load WordPress.
require( 'wp-load.php' );
// Clear specific page cache
if ( function_exists( 'rocket_clean_post' ) ) {
rocket_clean_post('30');
}
// Preload page
wp_remote_get ('https://example.com/page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment