I use the Advanced Custom Fields
plugin, but I want to remove the menu Custom Fields
.
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?
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' );