25% off ProSNIPC25OFF

ACF: Hide ACF Admin Menu for Non-Admins

Hides the ACF admin menu item from all users who do not have the manage_options capability, keeping the UI clean for editors.

PHPby SnipCraft
php
<?php
add_filter( 'acf/settings/show_admin', function( $show_admin ) {
    if ( ! current_user_can( 'manage_options' ) ) {
        return false;
    }
    return $show_admin;
} );
#acf#admin#custom-fields#permissions#roles