Advertisement
pbwebdesign

Attributi wc

Jan 29th, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_action( 'woocommerce_after_shop_loop_item', 'display_size_attribute', 5 );
  2. function display_size_attribute() {
  3.     global $product;
  4.  
  5.     if ( $product->is_type('variable') ) {
  6.         $taxonomy = 'pa_color';
  7.         echo '<span class="attribute-size">' . $product->get_attribute($taxonomy) . '</span>';
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement