zblog后台文章管理:显示文章浏览数。
zblog后台文章管理文件
zb_system/function/c_system_admin.php
在两个地方添加分别添加代码
$tableths[] = '<th>' . $zbp->lang['msg']['comment'] . '</th>';
$tableths[] = '<th>' . $zbp->lang['msg']['view'] . '</th>'; //第一个地方
$tabletds[] = '<td class="td5">' . $article->CommNums . '</td>';
$tabletds[] = '<td class="td5">' . $article->ViewNums . '</td>'; //第二个地方
{if $type=='index'&&$page=='1'} /*判断首页*/
{if $type=='category'} /*判断分类页*/
{if $type=='article'} /*判断内容页*/
{if $type=='page'} /*判断独立页面*/
{if $type=='author'} /*判断用户页*/
{if $type=='date'} /*判断日期页*/
{if $type=='tag'} /*判断标签页*/
zblog分类的全部调用方法
1.直接用模板调用
<ul>
{module:catalog}
</ul>
2.函数调用(更容易设计主题样式)
<ul>
{php}$array=$zbp->GetCategoryList(null,null,array('cate_Order'=>'ASC'),null,null);{/php}
{foreach $array as $cate}
<li><a href="{$cate.Url}">{$cate.Name}</a></li>
{/foreach}
</ul>
3.具体函数参考function/lib/zblogphp.php文件第2064行
4.可以参考同类型的调用标签等功能,触类旁通。
http://www.yzktw.com.cn/post/82.html
发布文章添加内容区块,前台直接显示
- 我的微信
- 这是我的微信扫一扫
- 我的微信公众号
- 我的微信公众号扫一扫