Skip to content

Instantly share code, notes, and snippets.

@pmgarman
Created February 24, 2012 14:51
Show Gist options
  • Save pmgarman/1901421 to your computer and use it in GitHub Desktop.
Save pmgarman/1901421 to your computer and use it in GitHub Desktop.
add_actions
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