분류 모양 바꾸는 방법 알려주세요 정보
분류 모양 바꾸는 방법 알려주세요본문
게시판관리- 분류 항목에서 넣은 분류 카테고리는 박스안에 들어가있는 형태로 나오는데요(기본 cheditor스킨) 이걸 사진 처럼 분류 항목들이 순서대로 출력되있어서 클릭할수있게 바꿀려면 어떻게 해야하나요?
cheditor 스킨의 list.skin.php 를 열어보니
<select name=sca onchange="location='<?=$category_location?>'+<?=strtolower($g4[charset])=='utf-8' ? "encodeURIComponent(this.value)" : "this.value"?>;">
<option value=''>전체</option><?=$category_option?></select>
이렇게 되있는데요, 사진처럼 바꾸려면 어떻게 바꾸는지좀 알려주시면 감사하겠습니당
cheditor 스킨의 list.skin.php 를 열어보니
<select name=sca onchange="location='<?=$category_location?>'+<?=strtolower($g4[charset])=='utf-8' ? "encodeURIComponent(this.value)" : "this.value"?>;">
<option value=''>전체</option><?=$category_option?></select>
이렇게 되있는데요, 사진처럼 바꾸려면 어떻게 바꾸는지좀 알려주시면 감사하겠습니당
댓글 전체
lib/common.lib.php
get_category_option함수 이용해서 만들어보면..
<ul>
<? if ($is_category) {
$arr = explode("|", $board[bo_category_list]);
$str = "";
for ($i=0; $i<count($arr); $i++)
if (trim($arr[$i]))
?>
<li><a href=<?=$list_href?>&ca_name=<?=$arr[$i]?>><?=$arr[$i]?></a></li>
<?}?>
</ul>
대충 이런식일걸요. 안돌려봐서..
get_category_option함수 이용해서 만들어보면..
<ul>
<? if ($is_category) {
$arr = explode("|", $board[bo_category_list]);
$str = "";
for ($i=0; $i<count($arr); $i++)
if (trim($arr[$i]))
?>
<li><a href=<?=$list_href?>&ca_name=<?=$arr[$i]?>><?=$arr[$i]?></a></li>
<?}?>
</ul>
대충 이런식일걸요. 안돌려봐서..
답변감사드립니다~ 참고해보겠습니다