WordPress WooCommerce产品上传图片可以自己填写alt title栏位(title栏位默认是图片名称),图片很多的话工作量很大,可以用代码实现前台自动调用产品标题
alt=” 产品标题” title=”产品标题 ”
这样也可以利于SEO。
Theme Functions (functions.php)中添加下面代码
// Woocommerce Alt Title
add_filter(‘wp_get_attachment_image_attributes’,’change_attachement_image_attributes’, 20, 2);
function change_attachement_image_attributes($attr, $attachment) {
global $post;if ($post->post_type == ‘product’) {
$title = $post->post_title;
$attr[‘alt’] = $title;
$attr[‘title’] = $title;
}
return $attr;}