Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Plugin Name: Add Text Below Product Title
- Plugin URI: http://www.damiencarbery.com
- Description: https://www.facebook.com/groups/advanced.woocommerce/permalink/1988670974480645/
- Author: Damien Carbery
- Version: 0.1
- */
- add_action( 'woocommerce_after_shop_loop_item_title', 'text_below_product_title', 2 );
- function text_below_product_title() {
- echo '<p>', get_the_ID(), '</p>';
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement