How to Hide the "GNT: Our Blog" Admin Menu

function plt_hide_get_noticed_our_blog_menus() {
	//Hide the "Appearance → GNT: Our Blog" menu.
	remove_submenu_page('themes.php', 'gnt-our-blog-settings');
}

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

Where do I put this code?