1. 정확한 제품 또는 플러그인 이름
: 케이보드 최신버전
2. 상세 내용
: 안녕하세요. 카테고리 이름별 색상을 달리하는 글을 찾다가 아래 내용을 보았습니다.
https://www.cosmosfarm.com/threads/document/50935
그런데 제가 초보라 실례지만 아래 코드를 어떤 파일(list.php(?))의 어느 부분에 넣으면 되는지 몰라서요..
알려주시면 감사하겠습니다.
------------------
<?php if($content->category1 == 'A'):?> <span class="category1 a">[<?php echo $content->category1?>]</span>
<?php elseif($content->category1 == 'B'):?> <span class="category1 b">[<?php echo $content->category1?>]</span>
<?php elseif($content->category1 == 'C'):?> <span class="category1 c">[<?php echo $content->category1?>]</span>
<?php elseif($content->category1):?> <span class="category1">[<?php echo $content->category1?>]</span>
<?php endif?>
------------------
안녕하세요~^^
FTP로 접속해서 /wp-content/plugins/kboard/skin/사용중인스킨/list.php 파일에
아래 코드가 있는 부분을 찾아서
$content->category1
이 코드로 교체 해보시겠어요?
<?php if($content->category1 == 'A'):?> <span class="category1 a">[<?php echo $content->category1?>]</span>
<?php elseif($content->category1 == 'B'):?> <span class="category1 b">[<?php echo $content->category1?>]</span>
<?php elseif($content->category1 == 'C'):?> <span class="category1 c">[<?php echo $content->category1?>]</span>
<?php elseif($content->category1):?> <span class="category1">[<?php echo $content->category1?>]</span>
<?php endif?>
고맙습니다.