在使用dedecms建網(wǎng)站時(shí)有時(shí)需要在文章列表頁以及文章內(nèi)容頁調(diào)用文章評論次數(shù)和被會員收藏的次數(shù),但dedecms默認(rèn)模板以及官方都沒有給出調(diào)用的標(biāo)簽,這里織夢技術(shù)研究中心就將標(biāo)簽分享給大家。
下面的標(biāo)簽可以根據(jù)自己需要,在列表頁或文章頁分別調(diào)用文章評論次數(shù)和收藏次數(shù)。
列表頁的文章評論數(shù)調(diào)用標(biāo)簽:
[field:ID runphp='yes']$dsql = new dedesql(false);$dsql -> SetQuery("Select count(id) as c from dede_feedback where aid=".@me);$row = $dsql -> getone();@me=$row['c'];[/field:ID]
列表頁的文章評論數(shù)調(diào)用標(biāo)簽:
[field:ID runphp='yes'] $dsql = new dedesql();$dsql -> SetQuery("select count(*) as c from dede_member_stow where aid=".@me);$row = $dsql -> getone();@me=$row['c']; [/field:ID]
文章內(nèi)容頁的文章評論數(shù)調(diào)用標(biāo)簽:
{dede:field.id runphp='yes'} $dsql = new dedesql(false);$dsql -> SetQuery("Select count(id) as c from dede_feedback where aid=".@me);$row = $dsql -> getone();@me=$row['c'];{/dede:field.id}
文章內(nèi)容頁的文章收藏次數(shù)調(diào)用標(biāo)簽:
{dede:field.id runphp='yes'} $dsql = new dedesql();$dsql -> SetQuery("select count(*) as c from dede_member_stow where aid=".@me);$row = $dsql -> getone();@me=$row['c']; {/dede:field.id}
使用上面的標(biāo)簽注意:上面的標(biāo)簽中紅色的部分是默認(rèn)數(shù)據(jù)庫前綴為dede,如果你網(wǎng)站的數(shù)據(jù)庫前綴不是,請修改為你自己的數(shù)據(jù)庫前綴,不然調(diào)用不出數(shù)據(jù)來。
|