본문
기본적으로 첨부이미지에 설명을 달지 않으면 첨부이미지에 alt가 붙지 않아서 검색엔진 비친화적이다.
제목의 이미지를 alt로 넣는 방법//
skin/board/ar.basic_new/view.skin.php
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
for ($i=0; $i<=count($view['file']); $i++) {
if (strstr($view["wr_10"],'orijpg')) echo $view['file'][$i]['view'];
else echo get_view_thumbnail($view['file'][$i]['view']);
}
echo "</div>\n";
}
?>
--> 을 아래와같이 변경
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
for ($i=0; $i<=count($view['file']); $i++) {
if (!$view[file][$i][content] && $view[file][$i][view]) {
$view[file][$i][content] = get_text($write['wr_subject']);
$view[file][$i]['view'] = view_file_link($view[file][$i][file], $view[file][$i]['image_width'], $view[file][$i]['image_height'], $view[file][$i]['content']);
}
//var_dump($view[file][$i]);
if (strstr($view["wr_10"],'orijpg')) echo $view['file'][$i]['view'];
else echo get_view_thumbnail($view['file'][$i]['view']);
}
echo "</div>\n";
}
?>
댓글목록
등록된 댓글이 없습니다.