How to Hide the "WordSentinel" Admin Menu

function plt_hide_wordsentinel_menus() {
	//Hide the "WordSentinel" menu.
	remove_menu_page('NEXSOL_WS_wordsentinel');
}

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

Where do I put this code?