Skip to content

Snippet: Alter WooCommerce Menu Cart Icon HTML

function my_menu_cart_icon_html( $html ) {
	$html = 'YOUR CUSTOM HTML';
	return $html;
}
add_filter( 'wpex_menu_cart_icon_html', 'my_menu_cart_icon_html' );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top