Guest User

Untitled

a guest
Mar 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. add_action( 'woocommerce_after_shop_loop_item_title', 'wc_show_dimensions', 9 );
  2.  
  3. function wc_show_dimensions() {
  4. global $product;
  5. $dimensions = $product->get_dimensions();
  6.  
  7. if ( ! empty( $dimensions ) ) {
  8. echo '<span class="dimensions">' . $dimensions . '</span>';
  9. }
  10. }
Add Comment
Please, Sign In to add comment