Skip to content

Instantly share code, notes, and snippets.

@rwkyyy
Created May 30, 2018 13:00
Show Gist options
  • Save rwkyyy/d3552815ecefde3aeb93c1f0a0953f34 to your computer and use it in GitHub Desktop.
Save rwkyyy/d3552815ecefde3aeb93c1f0a0953f34 to your computer and use it in GitHub Desktop.
WooCommerce - Add static content after product title
function add_after_product_title_rwk() {?>
<p class="small"><?php echo 'hello world'; ?></p>
<?php }
add_action( 'woocommerce_single_product_summary', 'add_after_product_title_rwk', 6 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment