How to Hide the "WP User Sentry" Admin Menu

function plt_hide_wp_user_sentry_menus() {
	//Hide the "Settings → WP User Sentry" menu.
	remove_submenu_page('options-general.php', 'wp-user-sentry-settings');
}

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

Where do I put this code?