How to Hide the "Simple JWT Login" Admin Menu

function plt_hide_simple_jwt_login_menus() {
	//Hide the "Simple JWT Login" menu.
	remove_menu_page('main-page-simple-jwt-login-plugin');
}

add_action('admin_menu', 'plt_hide_simple_jwt_login_menus', 11);

Where do I put this code?