phpcms와 함께 제공되는 댓글 플러그인은 매우 유용합니다! 그런데 개인적으로 스타일이 너무 못생겼다고 느꼈고, 바이두에서 해결 방법을 찾지 못한 것 같아 제가 직접 검색을 해본 결과 두 가지 방법으로 수정이 가능합니다.
방법 1:
PHPCMS의 get 메소드를 사용하여 데이터를 가져옵니다
//拼接评论表的commentid字段值 {php $commentid = 'content_'.$catid.'-'.$id.'-'.$modelid;} //查询获取数据 {pc:get sql="SELECT * FROM v9_comment_data_1 where commentid = '$commentid'" cache="0" return="data"} //循环输出 {loop $data $key $val} <li class="list-group-item"> <div class="media"> <a class="media-left" href="#"> <img src="{IMG_PATH}tou.png" class="img-circle" alt="..."> </a> <div class="media-body"> <h5 class="media-heading">{$val[username]}</h5> <span style="font-size:10px;">{$val[content]}</span> </div> </div> </li> {/loop} {/pc}
방법 2:
get 메소드를 사용하여 데이터를 얻는 방법 외에도 /phpcms/templates/default/comment/show_list.html을 찾아 다음 코드를 찾아 스타일을 수정하는 방법도 있습니다
{pc:comment action="lists" commentid="$commentid" siteid="$siteid" page="$_GET['page']" hot="$hot" num="20"} {if !empty($data)} <div class="comment_button"><a href="{APP_PATH}index.php?m=comment&c=index&a=init&commentid={$commentid}&title={urlencode(($comment[title] ? $comment[title] : $title))}&url={urlencode(($comment[url] ? $comment[url] : $url))}&hot=0&iframe=1"{if empty($hot)} class="on"{/if}>最新</a> <a href="{APP_PATH}index.php?m=comment&c=index&a=init&commentid={$commentid}&title={urlencode(($comment[title] ? $comment[title] : $title))}&url={urlencode(($comment[url] ? $comment[url] : $url))}&hot=1&iframe=1"{if $hot} class="on"{/if}>最热</a></div> <div class="comment"> {loop $data $r} <h5 class="title fn">{direction($r[direction])} <font color="#FF0000">{format::date($r[creat_at], 1)}</font> {if $r[userid]}{get_nickname($r[userid])}{else}{$r[username]}{/if} </h5> <div class="content">{$r[content]} <div class="rt"><a href="javascript:void(0)" onclick="reply({$r[id]}, '{$commentid}')">回复</a> <a href="javascript:void(0)" onclick="support({$r[id]}, '{$commentid}')">支持</a>(<font id="support_{$r[id]}">{$r[support]}</font>) </div> <div id="reply_{$r[id]}" style="display:none"></div> </div> <div class="bk30 hr mb8"></div> {/loop} </div> <div id="pages" class="text-r">{$pages}</div> {/if} {/pc}