Search code examples
wordpressadvanced-custom-fields

How to remove the Custom Fields menu?


I use the Advanced Custom Fields plugin, but I want to remove the menu Custom Fields.

enter image description here

The code is the following:

add_filter('admin_menu', function() {
    remove_menu_page('edit.php?post_type=acf');
});

But it doesn't work. Is there something wrong, or does anyone know a method to solve my problem?


Solution

  • Can you plz add this function in your theme functions.php file

    function remove_menus(){
       remove_menu_page( 'edit.php?post_type=acf' ); //Remove Post Type ACF
    }
    add_action( 'admin_init', 'remove_menus' );