最新下载
热门教程
- 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代码,所以可以在此根据自己的需要作出修改。
相关文章
- 鸣潮夏空毕业面板推荐 09-18
- 星痕共鸣坐骑怎么获得-载具获取方法汇总 09-18
- 地狱即我们调查道具怎么用 获取方式及使用方法一览 09-18
- 无主之地4欧力格怎么打 原始秘藏护卫打法攻略 09-18
- 无主之地4拉迪克斯怎么打 原始秘藏护卫打法攻略 09-18
- 地狱即我们调查道具怎么获取 获取方式及使用方法一览 09-18