지금 위젯 하나를 옆으로 지나가면서
최근게시물 5개 있을시 한개씩 옆으로 지나가면서 나오게 하고싶은데
어떻게 하나요 옆으로 가게하는건
date=1 center=1 strong=1,2'); ?>
이렇게 해서 처리 했는데 위젯은 어떻게 해야하는지 초보라서 모르겠습니다.;
widger.rows.php 소스 입니다.
if (!defined('_GNUBOARD_')) exit; //개별 페이지 접근 불가
// 링크
$is_modal_js = $wset['modal_js'];
$is_link_target = ($wset['modal'] == "2") ? ' target="_blank"' : '';
// 추출하기
$list = apms_board_rows($wset);
$list_cnt = count($list);
// 아이콘
$icon = (isset($wset['icon']) && $wset['icon']) ? ''.apms_fa($wset['icon']).'' : '';
$is_ticon = (isset($wset['ticon']) && $wset['ticon']) ? true : false;
// 랭킹
$rank = apms_rank_offset($wset['rows'], $wset['page']);
// 날짜
$is_date = (isset($wset['date']) && $wset['date']) ? true : false;
$is_dtype = (isset($wset['dtype']) && $wset['dtype']) ? $wset['dtype'] : 'm.d';
$is_dtxt = (isset($wset['dtxt']) && $wset['dtxt']) ? true : false;
// 새글
$is_new = (isset($wset['new']) && $wset['new']) ? $wset['new'] : 'red';
// 댓글
$is_comment = (isset($wset['comment']) && $wset['comment']) ? true : false;
// 강조글
$bold = array();
$strong = explode(",", $wset['strong']);
$is_strong = count($strong);
for($i=0; $i < $is_strong; $i++) {
list($n, $bc) = explode("|", $strong[$i]);
if(!$n) continue;
$n = $n - 1;
$bold[$n]['num'] = true;
$bold[$n]['color'] = ($bc) ? ' class="'.$bc.'"' : '';
}
?>
// 리스트
for ($i=0; $i < $list_cnt; $i++) {
//아이콘 체크
$wr_icon = $icon;
$is_lock = false;
if ($list[$i]['secret'] || $list[$i]['is_lock']) {
$is_lock = true;
$wr_icon = '';
} else if ($wset['rank']) {
$wr_icon = ' ';
$rank++;
} else if($list[$i]['new']) {
$wr_icon = '';
} else if($is_ticon) {
if ($list[$i]['icon_video']) {
$wr_icon = '';
} else if ($list[$i]['icon_image']) {
$wr_icon = '';
} else if ($list[$i]['wr_file']) {
$wr_icon = '';
}
}
// 링크이동
$target = '';
if($is_link_target && $list[$i]['wr_link1']) {
$target = $is_link_target;
$list[$i]['href'] = $list[$i]['link_href'][1];
}
//강조글
if($is_strong) {
if($bold[$i]['num']) {
$list[$i]['subject'] = ''.$list[$i]['subject'].'';
}
}
?>