Advertisement
daymobrew

Add Text Below Product Title (WooCommerce)

Feb 8th, 2018
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Add Text Below Product Title
  4. Plugin URI: http://www.damiencarbery.com
  5. Description: https://www.facebook.com/groups/advanced.woocommerce/permalink/1988670974480645/
  6. Author: Damien Carbery
  7. Version: 0.1
  8. */
  9.  
  10. add_action( 'woocommerce_after_shop_loop_item_title', 'text_below_product_title', 2 );
  11. function text_below_product_title() {
  12.     echo '<p>', get_the_ID(), '</p>';
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement