WordPress文章显示评论内容而不是标题
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-20 13:22:26 浏览: 评论:0
我们的wordpress默认情况下只显示评论的标题而不是显示评论内容,下面我来调整一下让wordpress显示评论内容吧,具体操作步骤如下.
首先找到根目录下的 wp_includes/default-widgets.php,在functionwidget`(第625行左右)里面找到以下代码(第655行左右):
- if ( $comments ) {
- foreach ( (array) $comments as $comment) {
- $output .= '<li class="recentcomments">' . /* translators: comments widget: 1: comment
- author, 2: post link */ sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(),
- '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title
- ($comment->comment_post_ID) . '</a>') . '</li>';
- }
- }
将第三行中的如下代码:
get_the_title($comment->comment_post_ID) 改成 strip_tags( $comment->comment_content),
同时将sprintf里的on改成你想要显示的文字,如『说』,这样样式就变成『评论者』说『评论内容』 以下是修改后的代码(注意:修改代码前请先备份)
实例代码如下:
- if ( $comments ) {
- foreach ( (array) $comments as $comment) {
- $output .= '<li class="recentcomments">' . /* translators: comments widget: 1: comment
- author, 2: post link */ sprintf(_x('%1$s said: %2$s', 'widgets'), get_comment_author_link
- (), '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . strip_tags
- (($comment->comment_content) . '</a>') . '</li>';
- }
- }
其实这个$output就是输出html代码,所以可以在此根据自己的需要作出修改.
Tags: WordPress 标题 评论内容 文章
相关文章
- ·WordPress初级教程1:什么是博客?(2013-11-11)
- ·WordPress初级教程-2: 什么是WordPress?(2013-11-11)
- ·WordPress初级教程-3: WordPress的功能和特点(2013-11-11)
- ·WordPress初级教程-4: 选择WordPress博客的主机和域名(2013-11-11)
- ·WordPress初级教程-5: 安装WordPress(2013-11-11)
- ·WordPress初级教程-6: 本地安装WordPress(2013-11-11)
- ·WordPress初级教程-7: 一个数据库中安装多个WordPress博客(2013-11-11)
- ·WordPress初级教程-8: WordPress控制面板/ Dashboard(2013-11-11)
- ·WordPress初级教程-9: WordPress用户设置/ Users(2013-11-11)
- ·WordPress初级教程-10: WordPress博客配置/ Settings(2013-11-11)
- ·关于wordpress上传图片不显示的原因(2013-11-11)
- ·WordPress程序的脆弱点你知道吗 (2013-11-11)
- ·总结八大Wordpress网站百度收录实现秒收的方法绝招 (2013-11-11)
- ·WordPress如何网站投稿者也可以上传图片(2014-03-18)
- ·WordPress怎么修改新用户注册邮件内容(2014-03-18)
- ·WordPress怎么添加前台注册功能(2014-03-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)