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