wpsc_delete_post_cache()
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_delete_post_cache( $id );
- $id(required)
- .
wpsc_delete_post_cache() wpsc delete post cache code WPSCache 3.1.0
function wpsc_delete_post_cache( $id ) {
$post = get_post( $id );
wpsc_delete_url_cache( get_author_posts_url( (int) $post->post_author ) );
$permalink = get_permalink( $id );
if ( $permalink != '' ) {
wpsc_delete_url_cache( $permalink );
return true;
} else {
return false;
}
}