Created
May 30, 2018 13:00
-
-
Save rwkyyy/d3552815ecefde3aeb93c1f0a0953f34 to your computer and use it in GitHub Desktop.
WooCommerce - Add static content after product title
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
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