Last active
February 29, 2024 13:55
-
-
Save tdmrhn/0e927a41514dc7054985784c715b63c4 to your computer and use it in GitHub Desktop.
Blocksy 2 Preload Mini Cart CSS file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('wp_enqueue_scripts', function() { | |
$theme = blocksy_get_wp_parent_theme(); | |
wp_enqueue_style( | |
'ct-legacy-mini-cart-styles', | |
blocksy_cdn_url( | |
get_template_directory_uri() . '/static/bundle/cart-header-element-lazy.min.css' | |
), | |
[], | |
$theme->get('Version') | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment