Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save plugin-republic/33865b22e08ee7c6923ef40cff74f931 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/33865b22e08ee7c6923ef40cff74f931 to your computer and use it in GitHub Desktop.
<?php
/**
* Add a shortcode using a hook
*/
function pr_add_shortcode_after_product_summary() {
echo do_shortcode( '[product_category category="hoodies" columns="3" limit="6"]' );
}
add_action( 'woocommerce_after_single_product_summary', 'pr_add_shortcode_after_product_summary', 5 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment