1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| function prune_wpsc_homepage_on_post_save ($post_id) {
if ( $post_id == null || empty($_POST) )
return;
// remove these next two lines of code if you want the hp to
// be deleted on save_post of other post types than regular posts
if ( !isset( $_POST['post_type'] ) || $_POST['post_type']!='post' )
return;
if ( !wp_is_post_revision( $post_id ) ) {
// explicitly removes all versions of the homepage - compressed and mobile
prune_super_cache( get_supercache_dir() . '/index.html', true );
prune_super_cache( get_supercache_dir() . '/index.html.gz', true );
prune_super_cache( get_supercache_dir() . '/index-mobile.html', true );
prune_super_cache( get_supercache_dir() . '/index-mobile.html.gz', true );
}
}
add_action('save_post', 'prune_wpsc_homepage_on_post_save', 15 ); |
Partager