Created
February 24, 2012 14:51
-
-
Save pmgarman/1901421 to your computer and use it in GitHub Desktop.
add_actions
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
add_action('woocommerce_before_single_product_summary','stuff_before_summary'); | |
add_action('woocommerce_after_single_product_summary','stuff_after_summary'); | |
function stuff_before_summary() { | |
echo '<div class="class">'; | |
} | |
function stuff_after_summary() { | |
echo '</div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment