How to Hide the "Blog to HTML Info/Usage" Admin Menu

function plt_hide_blog_to_html_menus() {
	//Hide the "Settings → Blog to HTML Info/Usage" menu.
	remove_submenu_page('options-general.php', 'blogtohtml_settings');
}

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

Where do I put this code?