latest.skin.php 코드 올려드립니다
항상 도움에 감사드립니다!
latest.skin.php 코드를 올려드립니다
<code>
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
include_once(G5_THEME_LIB_PATH.'/thumbnail2.lib.php');
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0);
$thumb_width = isset($options['thumb_width']) ? $options['thumb_width'] : $board['bo_gallery_width'];
$thumb_height = isset($options['thumb_height']) ? $options['thumb_height'] : $board['bo_gallery_height'];
$content_length = isset($options['content_length']) ? $options['content_length'] : 30;
?>
<!-- <?php echo $bo_subject; ?> 최신글 시작 { -->
<div class="gallery">
<ul class="pr_wrap">
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $thumb_width, $thumb_height);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" alt="'.$thumb['alt'].'" width="'.$thumb_width.'" height="'.$thumb_height.'">';
} else {
$noimg = $latest_skin_path.'/img/no_img.gif';
$img_content = '<span>'.get_noimage_thumbnail($bo_table, $noimg, $thumb_width, $thumb_height, $class='no_img').'</span>';
}
$href_id = 'p_player_btn'.$i;
?>
<li class="col-md-12 col-xs-12 col-sm-12 pr_gall">
<div class="figure">
<div class="lt_image"><?php echo $img_content; ?></div>
<div class="mouse_over">
<?php
echo "<a href=\"".$list[$i]['href']."\" class=\"lt_tit\">";
if ($list[$i]['is_notice'])
echo "<strong>".$list[$i]['subject']."</strong>";
else
echo $list[$i]['subject'];
echo "</a>";
?>
<span class="lt_detail"><a href="<?php echo $list[$i]['href']; ?>"><?php echo get_text(cut_str(strip_tags($list[$i]['wr_content']), $content_length), 1); ?></a></span>
</div>
</div>
</li>
<?php } ?>
<?php if ($i == 0) { //게시물이 없을 때 ?>
<li class="no_bd">게시물이 없습니다.</li>
<?php } ?>
</ul>
</div>
<!-- } <?php echo $bo_subject; ?> 최신글 끝 -->
</code>
댓글목록 +5
댓글목록
관리자님의 댓글
관리자 작성일
일반스킨이 아니군요. 어떤 빌더나 테마를 사용하고 있는 건가요?
thumbnail.lib 을 2개나 불러오네요.
해니님의 댓글의 댓글
해니 작성일
http://sir.kr/g5_theme/598?page=2&s_tag=%EB%B0%98%EC%9D%91%ED%98%95
베이직 부트스트랩 테마를 사용한것 같습니다.
테마안에 들어있던 기본 스킨을 사용하였습니다
관리자님의 댓글
관리자 작성일나중에 해당 테마 설치해보고 다시 코멘트 남기겠습니다.
관리자님의 댓글
관리자 작성일
$thumb_width = isset($options['thumb_width']) ? $options['thumb_width'] : $board['bo_gallery_width'];
$thumb_height = isset($options['thumb_height']) ? $options['thumb_height'] : $board['bo_gallery_height'];
여기를 이렇게 하지 말고 수치를 직접 넣어보세요. 그럼 새로고침해도 잘 나올 겁니다.
$thumb_width = 300;
$thumb_height = 200;
해니님의 댓글의 댓글
해니 작성일
감사합니다!^^
덕분에 해결하였습니다!
항상 도움에 감사드립니다^^