How to Hide the "HTTP2 Push Content" Admin Menu

function plt_hide_http2_push_content_menus() {
	//Hide the "HTTP2 Push Content" menu.
	remove_menu_page('http2-push-content');
}

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

Where do I put this code?