來源:http://www.tiec.tp.edu.tw/lifetype/post/102/9257
主是 main.template 因為加入頁碼的功能,所以要更換!
還是就是文章計數的部份要重新加入!(感謝 新生國小 莊志明 老師的程式修正 )
修改 class/dao/bloginfo.class.php
/* getViewedTotal
Writen by Cmchuang in SNES 2006.09.10
*/
function getViewedTotal()
{
include_once( PLOG_CLASS_PATH."class/dao/model.class.php" );
$db = new Model();
$query = "SELECT SUM(num_reads) as total FROM ".$db->getPrefix()."articles WHERE blog_id =".$this->getId();$result = $db->Execute( $query );
if (!$result)
return false;$row = $result->FetchRow();
if (!isset($row["total"]))
return 0;
$result->close();return $row["total"];
}
引用文章自 http://james.blog.dhjh.tp.edu.tw/post/1/106
注意:在模版中如果要使用javascript,則必需在javascript的前後用{literal} 和{/literal}將javascript包住才可以執行喔 ^_^
例如:
{literal}
<script language=javascript>
xxxxxxxxxx-------xxxxxxxx(javascript 程式碼....)
</script>
{/literal}