-
-
Save tessalt/b70dc841b8ba04ad98cab9cafd47cf00 to your computer and use it in GitHub Desktop.
This file contains 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
function shopify_shortcode ($atts) { | |
$a = shortcode_atts(array( | |
'id' => '' | |
), $atts); | |
return '<div data-shopify-product="' . $a['id'] . '"></div>'; | |
} | |
add_shortcode( 'shopify_product', 'shopify_shortcode' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment