Woocommerce展示特色产品的类别名称和一些描述?

时间:2013-06-22 13:20:05

标签: php wordpress plugins woocommerce

我正在使用woocommerce shortcode [featured_products per_page="12" columns="4"]来展示精选产品。它显示了所有特色产品。但有了这个,我还想在产品(description must be 10-20 words with readmore link)下显示产品类别名称和一点点描述。我已经阅读了文档,但我没有得到任何我想要的结果。任何帮助和建议都会非常明显。感谢

2 个答案:

答案 0 :(得分:2)

3个简单的步骤:

1)从content-product.php文件夹中打开themes/YourTheme/woocommerce/(如果找不到此文件,请将其从plugins/woocommerce/templates文件夹中复制)

2)用于显示产品类别

    $size = sizeof( get_the_terms( $post->ID, 'product_cat' ) );
    echo $product->get_categories( ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', $size, 'woocommerce' ) . ' ', '.</span>' );

3)要显示产品简称,请确保您的产品在WP 后端

中有简短说明
    echo apply_filters( 'woocommerce_short_description', $post->post_excerpt );

答案 1 :(得分:1)

看起来您可能需要通过Wordpress为此添加过滤器。

如果你对PHP很好,你就不会有问题。请在此处详细了解http://codex.wordpress.org/Function_Reference/apply_filtershttp://codex.wordpress.org/Function_Reference/add_filter