Skip to content

최신글 스킨

변수명타입설명
$latest_skin_urlstring최신글 스킨의 URL
$listarray최신글 목록
html
<?php
add_stylesheet('<link rel="stylesheet" href="' . $latest_skin_url . '/style.css">');
?>

<section>
    <?php foreach ($list as $article) { ?>
        제목: <?= $article['subject']; ?>
        날짜: <?= $article['datetime2']; ?>
    <?php } ?>
</section>
타입설명
wr_idstring글 번호
subjectstring글 제목
hrefstring글 링크
datetimestring글 작성일시
datetime2string글 작성일시 (년-월-일 시:분:초)
namestring글 작성자 이름
mb_idstring글 작성자 아이디
mb_nickstring글 작성자 닉네임
comment_cntstring댓글 수

썸네일

html
<?php
$thumbWidth = 100;
$thumbHeight = 100;

$thumb = get_list_thumbnail($bo_table, $article['wr_id'], $thumbWidth, $thumbHeight, false, true);

$thumb['exists'] = true;
if (!$thumb['src']) {
    $thumb['exists'] = false;
    $thumb['src'] = G5_IMG_URL.'/no_img.png';
    $thumb['alt'] = '이미지가 없습니다.';
}
$thumbnail = '<img src="' . $thumb['src'] . '" alt="' . $thumb['alt'] . '" >';
?>

<!-- 이미지 출력 -->
<?= $thumbnail ?>