Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 5, 2021 14:06
Show Gist options
  • Save wpmu-authors/3ecdaf77b4a3ee888de7ca0f2109c655 to your computer and use it in GitHub Desktop.
Save wpmu-authors/3ecdaf77b4a3ee888de7ca0f2109c655 to your computer and use it in GitHub Desktop.
remove-option.php
add_action( 'admin_init', 'my_detect_acf' );
function my_detect_acf() {
if( !function_exists( 'the_field' )) {
delete_option( 'my-acf-notice-dismissed' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment