Advertisement
majeedraza

WooCommerce - Add text after product image

Oct 23rd, 2015
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.   // add text after product image
  3.   // code goes in functions.php for your child theme
  4.   add_action('woocommerce_single_product_image_html', 'add_text');
  5.   function add_text($html) {
  6.     $html .= '<span class="add_text">My additional text.</span>'.PHP_EOL;
  7.     return $html;
  8.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement