Remove ACF menu items

Add the following to functions.php to remove both ACF and ACF options menu items based on user.

<?php function remove_acf_menu(){
  $admins = array(
    'USER NAME',
    'ANOTHER USER'
  );
  $current_user = wp_get_current_user();
  if( !in_array( $current_user->user_login, $admins ) ){
    remove_menu_page('edit.php?post_type=acf');
    remove_menu_page('acf-options');
  }
}
add_action( 'admin_menu', 'remove_acf_menu', 999 ); ?>

To also remove Yoast SEO from the menu add this line:

remove_menu_page('wpseo_dashboard');