1949啦网--小小 痛苦,是因为能力和欲望不匹配造成的

zblogPHP纯代码写的侧栏带头像“最新留言”模块

站长应该都注意到,很多zblog侧栏“最新留言”模块是带有头像的,而 zblogPHP默认的最新留言模块是没有头像只有文字的,所以应用中心推出了很多带头像留言模块的插件,这些插件是直接挂在 Index_Begin,可能会增加查询次数而使网页打开速度变慢。如果你不想挂太多的插件之类的本站今天就给大家带来如何纯代码实现侧栏带头像“最新留言”模块。(PS:当然如果你主题自带此功能,就不需要再次折腾了!)

解决方案

在主题 include.php 内加入获取最新留言并屏蔽管理员的函数;

在主题 CSS 样式内添加最新留言头像样式;

在主题 template 模板目录下新建 module-comments.php 挂载最新留言模块;

刷新缓存,编辑保存留言模块。

具体实现步骤

1、在主题 include.php 的 <?php 内添加如下函数:

if (!function_exists('Sidebar_Module_Get_Comments')){  function Sidebar_Module_Get_Comments(){     global $zbp;     $i = 6; //数字6请自行替换为需要显示的评论个数     $w=array();     $w[]=array('=', 'comm_IsChecking', 0);     $arr=explode(',','1'); //数字'1'请替换为管理员ID     $w[]=array('NOT IN','comm_AuthorID',$arr);     $comments = $zbp->GetCommentList(     '*',     $w,     array('comm_PostTime' => 'DESC'),     $i,     null);     return $comments;  }  }

2、在主题 CSS 样式内添加最新留言样式:

#divComments dd,#divComments ul{padding: 0;margin: 0;}  #divComments li{position:relative;width:100%;height:60px;overflow:hidden;padding:10px 10px 10px 60px;border:0;border-top:1px solid #eee;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-image:none;}  #divComments li:nth-child(1){border-top:0;}  #divComments li span.zb_avatar{position:absolute;left:10px;top:10px;width:40px;height:40px;}  .zb_avatar img{width:40px;height:40px;border-radius:50%;border:0;margin:0;padding:0;-webkit-transition:.4s;-webkit-transition:-webkit-transform.4s ease-out;transition:transform.4s ease-out;-moz-transition:-moz-transform.4s ease-out;}  #divComments li:hover .zb_avatar img{transform:rotateZ(60deg);-webkit-transform:rotateZ(60deg);-moz-transform:rotateZ(60deg);}  #divComments li small{line-height:20px;height:20px;overflow:hidden;font-size:11px;color:#999;display:block;border:0;margin:0;padding:0;}  #divComments li p{line-height:20px;height:20px;overflow:hidden;font-size:14px;display:block;margin:0 0 3px 0;padding:0;}

3、在主题 template 目录下添加最新留言模板文件,新建 module-comments.php 文件,内容如下:

{php}  $comments=Sidebar_Module_Get_Comments();  {/php}  {foreach $comments as $comment}  <li><span class="zb_avatar"><a href="{$comment->Post->Url}#cmt{$comment->ID}"><img src="{$comment->Author->Avatar}" alt="avatar"></a></span><p><a href="{$comment->Post->Url}#cmt{$comment->ID}">{TransferHTML($comment->Content, '[noenter]')}</a></p><small>{htmlspecialchars($comment->Author->StaticName)} 评论于:{$comment->Time('m-d')}</small></li>  {/foreach}

4、在后台首页刷新缓存,编辑并保存最新留言模块。

第一步:清空缓存并重新编译模板

第二步:后台左侧的模块管理中点击『最新留言』编辑按钮

第三步:点击『提交』按钮即可

5、刷新首页,查看侧栏,大功告成。

原文链接:https://www.qiquanji.com/post/7306.html

本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。

微信扫码关注

更新实时通知

作者:xialibing 分类:网页教程 浏览: