제목을 본문 내용의 일부로 가져오기
본문
글 목록 등에서 글쓰기를 할 경우
제목쓰는 칸이 따로 없이 작성된 본문의 일부를 제목으로 가져오던데,
글쓰기 스킨에서 제목을 없애고 본문 내용만 적고 본문내용의 일부가 제목으로 적용되게 하려면 어떻게 해야하나요???
답변 4
<?php echo cut_str(strip_tags(preg_replace('/\s+/',' ',$list[$i]['wr_content'])), 70); ?>
<?php echo cut_str(strip_tags(preg_replace('/\s+/',' ',$view['wr_content'])), 70); ?>
리스트
<?php
echo cut_str(get_text($list[$i]['wr_content']), 70);
?>
뷰
<?php
echo cut_str(get_text($view['wr_content']), 70);
?>
제목 필수입력항목 체크하는부분 없애고
내용가져오는건 @열공중님이 올려주신소스 쓰시면됩니다
<?php echo cut_str(strip_tags(preg_replace('/\s+/',' ',$list[$i]['wr_content'])), 70, ''); ?>
<?php echo cut_str(strip_tags(preg_replace('/\s+/',' ',$view['wr_content'])), 70, ''); ?>
해보세요.
답변을 작성하시기 전에 로그인 해주세요.