在 plog/templates/admin/dashboard.template 中
<h3>{$locale->tr("blog_statistics")}</h3>
<table class="dashboard_data_table_statistics">
<tr style="background-color: {cycle values="#FFFFFF,#F7F7F7"};">
<th>
{$locale->tr("total_posts")}:
</th>
<td>
{$blog->getTotalPosts()}
</td>
</tr>
<tr style="background-color: {cycle values="#FFFFFF,#F7F7F7"};">
<th>
{$locale->tr("total_comments")}:
</th>
<td>
{$blog->getTotalComments()}
</td>
</tr>
<tr style="background-color: {cycle values="#FFFFFF,#F7F7F7"};">
<th>
{$locale->tr("total_trackbacks")}:
</th>
<td>
{$blog->getTotalTrackbacks()}
</td>
</tr>
<tr style="background-color: {cycle values="#FFFFFF,#F7F7F7"};">
<th>
{$locale->tr("total_viewed")}:
</th>
<td>
{$blog->getViewedTotal()}
</td>
</tr>
</table>
Mark