그누커머스에서 최신게시글 문의
본문
메인페이지에서 최신글로 질문&답변 게시판을 불러오는데요.
저번에 문의드려서 답변게시글도 같이 불러오는건 성공했는데..
이번에는 답변 게시글만 글자색을 변경하고싶습니다..ㅠㅠ
어떻게 수정하는건가요?ㅠㅠ
child theme에 넣을 수 있는 코드로 좀 부탁드립니다........
도와주세요ㅠ^ㅠ
답변 1
http://sir.kr/qa/117798#c_117813
예전에 쓴 답변에서
<?php
$icon_str = "●";
if($row['wr_parent']){ //답변이면
$icon_str = "ㄴ";
}
echo "<a href=\"".esc_url($row['href'])."\">";
if ($row['is_notice'])
echo "<strong>".$icon_str.$row['subject']."</strong>";
else
echo $icon_str.$row['subject'];
이렇게 되어 있는 부분을 아래와 같이 바꿉니다.
<?php
$tmp_class = 'abc_normal';
$icon_str = "●";
if($row['wr_parent']){ //답변이면
$icon_str = "ㄴ";
$tmp_class = 'abc_notice';
}
echo "<a href=\"".esc_url($row['href'])."\" class=\"".$tmp_class."\" >";
if ($row['is_notice'])
echo "<strong>".$icon_str.$row['subject']."</strong>";
else
echo $icon_str.$row['subject'];
이렇게 하면 일반글의 a 태그 class 는 abc_normal 이 되고,
답변글의 a 태그 class 는 abc_notice 이 됩니다.
그리고 나서 css를 수정하세요.
.abc_notice{color:red}
!-->
답변을 작성하시기 전에 로그인 해주세요.