最新下载
热门教程
- 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代码,所以可以在此根据自己的需要作出修改。
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21