Skip to content

Instantly share code, notes, and snippets.

@tessalt
Created February 17, 2017 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tessalt/b70dc841b8ba04ad98cab9cafd47cf00 to your computer and use it in GitHub Desktop.
Save tessalt/b70dc841b8ba04ad98cab9cafd47cf00 to your computer and use it in GitHub Desktop.
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