답변 4개
=$thumfile?> | =$title?> =$list[$i][comment_cnt]?> =$list[$i][icon_new]?> >=cut_str(strip_tags($list[$i][wr_content]),150,"..")?>font> |
댓글을 작성하려면 로그인이 필요합니다.
latest.lib.php 파일에
// 최신글 추출 function latest($skin_dir="", $bo_table, $rows=10, $subject_len=40, $options="") { global $g4;
if ($skin_dir) $latest_skin_path = "$g4[path]/skin/latest/$skin_dir"; else $latest_skin_path = "$g4[path]/skin/latest/basic";
$list = array();
$sql = " select * from $g4[board_table] where bo_table = '$bo_table'"; $board = sql_fetch($sql);
$tmp_write_table = $g4['write_prefix'] . $bo_table; // 게시판 테이블 전체이름 //$sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_id desc limit 0, $rows "; // 위의 코드 보다 속도가 빠름 $sql = " select * from $tmp_write_table where wr_is_comment = 0 order by wr_num limit 0, $rows "; //explain($sql); $result = sql_query($sql); for ($i=0; $row = sql_fetch_array($result); $i++) $list[$i] = get_list($row, $board, $latest_skin_path, $subject_len); ob_start(); include "$latest_skin_path/latest.skin.php"; $content = ob_get_contents(); ob_end_clean();
return $content; }
현재 메인 화면의 최신글 구조는 이렇게 되어 있습니다.
| =$thumfile?> | =$title?> =$list[$i][comment_cnt]?> =$list[$i][icon_new]?> >=cut_str(strip_tags($list[$i][wr_content]),150,"..")?>font> |
왼쪽으로 첨부 이미지를 보여주고 오른쪽으로는 타이틀과 아래에 내용이 정해진 숫자만큼 보여지게 되여
있는데 비밀글일때도 타이틀 아래 내용이 보여진다는 거지요
이것을 비밀글로 작성이 되어 있었다면, 내용에 "비밀글 입니다."라는 content로 하려 합니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인