최신글 스킨에서 본문 출력 글자수 설정에 대해 문의 드립니다
본문
최신글 스킨에 보면 본문 출력 소스가 아래와 같이 되어있어서 본문 글자수 120에서 자르도록 되어있는 것을 스킨에서 설정하지 않고출력 할 때 설정하려면 어떻게 하면 되나요..
echo get_text(cut_str(strip_tags($list[$i]['wr_content']),120));
위의 것은 최신글 스킨 내용 이구여..
아래와 같이 최신글을 뽑잖아여~~~ 자유게시판, 글목록 4개, 제목글자주 15
<?php echo latest('theme/basic', 'free',4, 15); ?> -
위에서 본문글자수를 120글자로 자르기 할 수 있으면 좋겠습니다.
latest.lib.php 상단에
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $cache_time=1, $options='')
{~~~
위와 같이 되어있어서 <?php echo latest('theme/basic', 'free',4, 15,'',120); ?> 으로 했지만 안되네요..
!-->
답변 2
1)
<?php echo latest('theme/basic', 'free', 4, 15, '', 120); ?>
->
<?php echo latest('theme/basic', 'free', 4, 15, 120); ?>
2) /lib/latest.lib.php
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, ~
->
function latest($skin_dir='', $bo_table, $rows=10, $subject_len=40, $content_len=120, ~
3) /skin/latest/latest.skin.php
echo get_text(cut_str(strip_tags($list[$i]['wr_content']),120));
->
echo get_text(cut_str(strip_tags($list[$i]['wr_content']), $content_len));
$content_len=120 은 고정이 아니라 해당에 값이 없을 경우 기본값을 지정해주는 역활입니다.
답변을 작성하시기 전에 로그인 해주세요.