We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List by ChatGPT, need to check what this plugin and https://wordpress.org/plugins/cloudflare/ does by default?
save_post
delete_post
trashed_post
untrashed_post
created_term
edited_term
delete_term
profile_update
deleted_user
The text was updated successfully, but these errors were encountered:
From https://wordpress.org/plugins/cloudflare/
$cloudflarePurgeEverythingActions = array( 'autoptimize_action_cachepurged', // Compat with https://wordpress.org/plugins/autoptimize 'switch_theme', // Switch theme 'customize_save_after' // Edit theme ); $cloudflarePurgeURLActions = array( 'deleted_post', // Delete a post 'delete_attachment', // Delete an attachment - includes re-uploading ); add_action('transition_post_status', array($cloudflareHooks, 'purgeCacheOnPostStatusChange'), PHP_INT_MAX, 3); add_action('transition_comment_status', array($cloudflareHooks, 'purgeCacheOnCommentStatusChange'), PHP_INT_MAX, 3); add_action('comment_post', array($cloudflareHooks, 'purgeCacheOnNewComment'), PHP_INT_MAX, 3);
Should we also hook the $cloudflarePurgeEverythingActions actions and support purge everything? Currently, we only support this through CLI.
$cloudflarePurgeEverythingActions
Sorry, something went wrong.
Sounds like a good plan to me.
rvdsteege
Successfully merging a pull request may close this issue.
List by ChatGPT, need to check what this plugin and https://wordpress.org/plugins/cloudflare/ does by default?
save_post
delete_post
trashed_post
untrashed_post
created_term
edited_term
delete_term
profile_update
deleted_user
The text was updated successfully, but these errors were encountered: