How to Hide the "FB Comments" Admin Menu

function plt_hide_ultimate_facebook_comments_menus() {
	//Hide the "FB Comments" menu.
	remove_menu_page('ultimate-facebook-comments');
}

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

Where do I put this code?