- 相關(guān)推薦
PHP學(xué)習(xí):修改phpcms中的評論樣式
掌握好每一個知識點,考在編寫代碼的時候就不會有那么多錯誤了。下面是百分網(wǎng)小編精心為大家整理的修改phpcms中的評論樣式,希望對大家學(xué)習(xí)PHP有幫助,更多內(nèi)容請關(guān)注應(yīng)屆畢業(yè)生網(wǎng)!
phpcms中自帶的評論插件很好用!但是樣式個人感覺丑的狠,百度一下也沒能找到解決方式,也許是自己的搜索方式不對,于是自己就研究了研究,這里可以使用兩種方法進行修改
方法一:
使用PHPCMS中的get方法進行獲取數(shù)據(jù)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//拼接評論表的commentid字段值 {php $commentid = 'content_' . $catid . '-' . $id . '-' . $modelid ;} //查詢獲取數(shù)據(jù) {pc:get sql= "SELECT * FROM v9_comment_data_1 where commentid = '$commentid'" cache= "0" return = "data" } //循環(huán)輸出 {loop $data $key $val } <li class = "list-group-item" > <p class = "media" > <a class = "media-left" href= "#" > <img src= "{IMG_PATH}tou.png" class = "img-circle" alt= "..." > </a> <p class = "media-body" > <h5 class = "media-heading" >{ $val [username]}</h5> <span style= "font-size:10px;" >{ $val [content]}</span> </p> </p> </li> {/loop} {/pc} |
方法二:
除了使用get方法進行獲取數(shù)據(jù)之外還有一種最簡單的方式,找到 /phpcms/templates/default/comment/show_list.html 找到如下代碼,進行樣式的修改即可
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{pc:comment action= "lists" commentid= "$commentid" siteid= "$siteid" page= "$_GET[page]" hot= "$hot" num= "20" } { if ! empty ( $data )} <p 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></p> <p 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> <p class = "content" >{ $r [content]} <p class = "rt" ><a href= "javascript:void(0)" onclick= "reply({$r[id]}, '{$commentid}')" >回復(fù)</a> <a href= "javascript:void(0)" onclick= "support({$r[id]}, '{$commentid}')" >支持</a>(<font id= "support_{$r[id]}" >{ $r [support]}</font>) </p> <p id= "reply_{$r[id]}" style= "display:none" ></p> </p> <p class = "bk30 hr mb8" ></p> {/loop} </p> <p id= "pages" class = "text-r" >{ $pages }</p> {/ if } {/pc} |
【PHP學(xué)習(xí):修改phpcms中的評論樣式】相關(guān)文章:
怎么修改php后綴09-30
從 PHP 4 移植到 PHP 5 網(wǎng)站程序哪些需要修改10-20
PHP腳本修改Linux系統(tǒng)口令的方法09-05
PHP腳本修改Linux或Unix系統(tǒng)口令方法10-18
PHP中php://input和$-POST的區(qū)別08-26
PHP中的魔術(shù)方法10-20
PHP中l(wèi)ist的方法07-05
PHP是做什么的 如何學(xué)習(xí)PHP06-18
PHP前端開發(fā)中的性能05-25