2

我一直在到处寻找在 Wordpress/Woocommerce 中应该很明显的提示。我想让产品页面中显示的属性值作为自动生成的存档链接。有谁知道这是怎么做到的吗?代码页是:

<?php
            if ( $attribute['is_taxonomy'] )  {

                $values = woocommerce_get_product_terms( $product->id, $attribute['name'], 'names' );
                echo  apply_filters( 'woocommerce_attribute', wpautop( wptexturize( implode( ', ', $values ) ) ), $attribute, $values ) ;

            } else {

                // Convert pipes to commas and display values
                $values = array_map( 'trim', explode( '|', $attribute['value'] ) );
                echo apply_filters( 'woocommerce_attribute', wpautop( wptexturize( implode( ', ', $values ) ) ), $attribute, $values );

            }
        ?>

任何人都可以帮忙吗?谢谢!F。

4

1 回答 1

1

请看一下这个。刚在github找到

https://gist.github.com/coenjacobs/2594985

于 2013-06-16T21:24:43.903 回答