Woocommerce产品标题

时间:2015-08-07 03:49:49

标签: php wordpress woocommerce title alt

我想问一下如何自定义woo商业产品的图片。我想添加alt title特色产品。我一直在调试functions.php。我看到woocommerce_get_product_thumbnail()如何自定义此输出图像标题如下:

<img src="www.source.com" title="image title">

1 个答案:

答案 0 :(得分:0)

你可以这样做

remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10);

if (!function_exists('change_product_image')) {
    function change_product_image( $html ){
        global $post;

        $html = get_the_post_thumbnail( $post->ID, 'full' );

        echo $html;
    }
}

add_action( 'woocommerce_before_shop_loop_item_title', 'change_product_image', 10 );

首先从显示图像的woocommerce中删除默认操作,然后输出您的功能。

你可以玩这个。更改大小,找出每个图像的属性等。