Skip to content

Instantly share code, notes, and snippets.

@markjaquith
Created January 12, 2021 08:28
Show Gist options
  • Save markjaquith/852c716b06df15aea6bf07e1161bbb91 to your computer and use it in GitHub Desktop.
Save markjaquith/852c716b06df15aea6bf07e1161bbb91 to your computer and use it in GitHub Desktop.
Disable ACF UI
<?php
// Block the ACF settings UI entirely, except on local dev.
if (! defined('WP_LOCAL_DEV') || ! WP_LOCAL_DEV) {
add_filter('acf/settings/show_admin', '__return_false');
add_filter('acf/settings/capability', function () { return 'do_not_allow'; });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment