最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
WordPress文章显示评论内容而不是标题
时间:2022-06-25 19:09:19 编辑:袖梨 来源:一聚教程网
首先找到根目录下的 wp_includes/default-widgets.php,在functionwidget`(第625行左右)里面找
到以下代码(第655行左右):
代码如下 | 复制代码 |
if ( $comments ) { author, 2: post link */ sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), ($comment->comment_post_ID) . '') . ' } } |
将第三行中的
代码如下 | 复制代码 |
get_the_title($comment->comment_post_ID) 改成 strip_tags( $comment- >comment_content), |
同时将sprintf里的on改成你想要显示的文字,如『说』,这样样式就变成
『评论者』说『评论内容』 以下是修改后的代码(注意:修改代码前请先备份)
代码如下 | 复制代码 |
if ( $comments ) { author, 2: post link */ sprintf(_x('%1$s said: %2$s', 'widgets'), get_comment_author_link (), '' . strip_tags (($comment->comment_content) . '') . ' } } |
其实这个$output就是输出html代码,所以可以在此根据自己的需要作出修改。
相关文章
- 《弓箭传说2》新手玩法介绍 01-16
- 《地下城与勇士:起源》断桥烟雨多买多送活动内容一览 01-16
- 《差不多高手》醉拳龙技能特点分享 01-16
- 《鬼谷八荒》毕方尾羽解除限制道具推荐 01-16
- 《地下城与勇士:起源》阿拉德首次迎新春活动内容一览 01-16
- 《差不多高手》情圣技能特点分享 01-16