상품페이지 썸네일 alt 태그 수정
본문
상품 썸네일 미리보기 alt 추가 관련 문의 드립니다.
SEO에 썸네일 미리보기 저 부분 alt태그가 비어 있다고 수정하라는데
경로를 모르겠습니다. ㅠㅠ
아래 예제 페이지 썸네일에 alt, title 태그가 비어 있는데
추가 수정 하려면 경로가 어떻게 되는지 문의 드립니다.
https://demo.sir.kr/gnuboard5/shop/item.php?it_id=1412210417
<a href="https://demo.sir.kr/gnuboard5/shop/largeimage.php?it_id=1412210417&no=1" target="_blank" class="popup_item_image"><img src="https://demo.sir.kr/gnuboard5/data/item/1412210417/thumb-7LK07YGs11_400x400.jpg" width="400" height="400" alt=""></a>
답변 1
https://github.com/gnuboard/gnuboard5/blob/master/skin/shop/basic/item.form.skin.php#L32
//echo '<a href="'.G5_SHOP_URL.'/largeimage.php?it_id='.$it['it_id'].'&no='.$i.'" target="_blank" class="popup_item_image">'.$img.'</a>';
echo '<a href="'.G5_SHOP_URL.'/largeimage.php?it_id='.$it['it_id'].'&no='.$i.'" target="_blank" class="popup_item_image" alt="' . $it_name . '">'.$img.'</a>';
https://github.com/gnuboard/gnuboard5/blob/master/theme/basic/skin/shop/basic/item.form.skin.php#L32
//echo '<a href="'.G5_SHOP_URL.'/largeimage.php?it_id='.$it['it_id'].'&no='.$i.'" target="_blank" class="popup_item_image">'.$img.'</a>';
echo '<a href="'.G5_SHOP_URL.'/largeimage.php?it_id='.$it['it_id'].'&no='.$i.'" target="_blank" class="popup_item_image" alt="' . $it_name . '">'.$img.'</a>';
답변을 작성하시기 전에 로그인 해주세요.