How to Hide LinkWorth Admin Menus

function plt_hide_linkworth_wp_plugin_menus() {
	//Hide the "LinkWorth" menu.
	remove_menu_page('lw-settings');
	//Hide the "LinkWorth → General" menu.
	remove_submenu_page('lw-settings', 'lw-settings');
	//Hide the "LinkWorth → Advanced" menu.
	remove_submenu_page('lw-settings', 'lw-advanced-settings');
}

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

Where do I put this code?