How to Hide the "JAMStackPress" Admin Menu

function plt_hide_jamstackpress_menus() {
	//Hide the "JAMStackPress" menu.
	remove_menu_page('jamstackpress');
}

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

Where do I put this code?