묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
에디터 첨부 이미지 본문 강제 삽입
2013.10.02 18:01
본문 에디터에 첨부된 이미지를 게시판 스킨에 출력하고 싶어 아래의 코드를 사용중입니다.
{@ $uploaded_list = $oDocument->getUploadedFiles() }
<!--@foreach($uploaded_list as $key => $file)-->
{@$file_explode=explode(".",strtoupper($file->source_filename))}
<!--@if($file_explode[1]=="GIF" || $file_explode[1]=="JPG" || $file_explode[1]=="PNG" || $file_explode[1]=="BMP")-->
{@ $_img_url = "내주소".substr($file->uploaded_filename,1,strlen($file->uploaded_filename)-1);}
<!--@end-->
<!--@end-->
<img src="{$_img_url}">
첨부 리스트 상단의 이미지 한개만 출력이 되는데
다른 이미지도 같이 따로따로 출력하고 싶습니다.
어떻게 하면 될까요?