• Resolved gogetita

    (@gogetita)


    Hey, great plugin that you created!

    I have one question:
    Is there a hook for clearing the cache of a single post?
    Something like wpfc_clear_post_cache_by_id($post_id) by wpfastest cache plugin? When I update post meta manually with update_post_meta() I would like to clear the cache of that post and another post.

    Best Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • @gogetita You’ll have to use the filter outside the hook function call.

    add_filter( 'wpo_purge_all_cache_on_update', '__return_true' );

    So it will purge all the cache whenever you update the post/page or create a new post/page.

    Thread Starter gogetita

    (@gogetita)

    Ok, thanks

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hook for clearing cache of specific post’ is closed to new replies.