How to Hide the "Topirank plugin" Admin Menu

function plt_hide_topirank_integration_menus() {
	//Hide the "Topirank plugin" menu.
	remove_menu_page('topirank_plugin');
}

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

Where do I put this code?