Created
December 2, 2025 14:47
-
-
Save plugin-republic/33865b22e08ee7c6923ef40cff74f931 to your computer and use it in GitHub Desktop.
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 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