Member Month: Four FREE guest passes with any membership! LEARN MORE
Summer Camps: Sign up before they sell out! SIGN-UP
Search
Close this search box.

Added a function to hide CPT RR Website Notes from all users except the RR team. The function includes an array of RR team email addresses for user validation.

function remove_menu_items() {
$current_user = wp_get_current_user();
    if(  !in_array( $current_user->user_email, array(‘wla@therunningrobots.com’, ‘tif@therunningrobots.com’, ‘sean@therunningrobots.com’, ‘tim@therunningrobots.com’, ‘peter@therunningrobots.com’, ‘miranda@therunningrobots.com’, ‘michelle@therunningrobots.com’, ‘laura@therunningrobots.com’, ‘larissa@therunningrobots.com’, ‘jay@therunningrobots.com’, ‘domains@therunningrobots.com’ ) ) ) {
remove_menu_page( ‘edit.php?post_type=rr-website-note’ );
}
}
add_action( ‘admin_menu’, ‘remove_menu_items’ );