Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 9, 2021 06:40
Show Gist options
  • Save wpmu-authors/51487ef02492b4a8c4f476684d7d51ee to your computer and use it in GitHub Desktop.
Save wpmu-authors/51487ef02492b4a8c4f476684d7d51ee to your computer and use it in GitHub Desktop.
ajaxhandler.php
add_action( 'wp_ajax_my_dismiss_acf_notice', 'my_dismiss_acf_notice' );
function my_dismiss_acf_notice() {
update_option( 'my-acf-notice-dismissed', 1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment