How to Hide the "Page Loader" Admin Menu

function plt_hide_kinetichub_page_loader_menus() {
	//Hide the "Settings → Page Loader" menu.
	remove_submenu_page('options-general.php', 'kinetichub-page-loader');
}

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

Where do I put this code?