
팁과노하우
게시판 뷰페이지 첨부사진보다 본문글이 위로 나오게하기
게시판 뷰페이지 들어가보면 사진이 먼저 위로 올라오는데
글이 먼저 위에 나오게 하기
<!-- 본문 내용 시작 { -->
<div id="bo_v_con">
<?php
// 파일 출력
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
foreach($view['file'] as $view_file) {
echo get_file_thumbnail($view_file);
}
echo "</div>\n";
}
?>
<?php echo get_view_thumbnail($view['content']); ?>
</div>
위에 부분을
<!-- 본문 내용 시작 -->
<div id="bo_v_con">
<?php echo get_view_thumbnail($view['content']); ?>
</div>
<?php
// 파일 출력 코드 (이제 본문 아래에 위치)
$v_img_count = count($view['file']);
if($v_img_count) {
echo "<div id=\"bo_v_img\">\n";
foreach($view['file'] as $view_file) {
echo get_file_thumbnail($view_file);
}
echo "</div>\n";
}
?>
- 이전글광역시/도, 시/군/구 셀렉트로 만들기2025.03.03
- 다음글아래로 당겨서 새로고침하기2025.03.01
댓글목록

