
// Performance tweaks for Ice Machine Commercial.
add_action( 'wp_enqueue_scripts', 'imc_dequeue_unused_assets', 999 );
function imc_dequeue_unused_assets() {
	if ( is_admin() ) {
		return;
	}
	if ( ! is_user_logged_in() ) {
		wp_dequeue_style( 'dashicons' );
	}
	if ( ! function_exists( 'is_woocommerce' ) || ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) ) {
		wp_dequeue_style( 'wc-blocks-style' );
		wp_dequeue_style( 'wc-blocks-vendors-style' );
	}
}

add_filter( 'script_loader_tag', 'imc_defer_scripts', 10, 3 );
function imc_defer_scripts( $tag, $handle, $src ) {
	if ( is_admin() ) {
		return $tag;
	}
	$exclude = [ 'jquery-core', 'jquery-migrate', 'elementor-frontend' ];
	if ( in_array( $handle, $exclude, true ) ) {
		return $tag;
	}
	if ( false !== strpos( $tag, ' defer' ) ) {
		return $tag;
	}
	return str_replace( ' src', ' defer src', $tag );
}

add_action( 'wp_head', 'imc_resource_hints', 1 );
function imc_resource_hints() {
	echo '<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin>' . "\n";
	echo '<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>' . "\n";
}

add_filter( 'xmlrpc_enabled', '__return_false' );
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//icemachinecommercial.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://icemachinecommercial.com/post-sitemap.xml</loc>
		<lastmod>2026-05-19T21:03:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/page-sitemap.xml</loc>
		<lastmod>2026-05-23T16:55:29+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/product-sitemap.xml</loc>
		<lastmod>2026-06-10T17:30:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/product-sitemap2.xml</loc>
		<lastmod>2026-06-10T17:30:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/elementor-hf-sitemap.xml</loc>
		<lastmod>2026-05-21T19:35:10+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/footpaw-breadcrumb-sitemap.xml</loc>
		<lastmod>2026-05-19T18:11:41+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/category-sitemap.xml</loc>
		<lastmod>2026-05-19T21:03:47+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/product_brand-sitemap.xml</loc>
		<lastmod>2026-06-10T17:30:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://icemachinecommercial.com/product_cat-sitemap.xml</loc>
		<lastmod>2026-06-10T17:30:14+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->