国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > CMS > Wordpress > 正文

WordPress文章顯示評論內容而不是標題

2024-09-07 00:50:17
字體:
來源:轉載
供稿:網友

我們的wordpress默認情況下只顯示評論的標題而不是顯示評論內容,下面我來調整一下讓wordpress顯示評論內容吧,具體操作步驟如下.

首先找到根目錄下的 wp_includes/default-widgets.php,在functionwidget`(第625行左右)里面找到以下代碼(第655行左右):

  1. if ( $comments ) { 
  2.      foreach ( (array$comments as $comment) { 
  3.      $output .= '<li class="recentcomments">' . /* translators: comments widget: 1: comment 
  4. author, 2: post link */ sprintf(_x('%1$s on %2$s''widgets'), get_comment_author_link(), 
  5. '<a  href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title 
  6. ($comment->comment_post_ID) . '</a>') . '</li>'
  7.      } 

將第三行中的如下代碼:

get_the_title($comment->comment_post_ID) 改成 strip_tags( $comment->comment_content),

同時將sprintf里的on改成你想要顯示的文字,如『說』,這樣樣式就變成『評論者』說『評論內容』 以下是修改后的代碼(注意:修改代碼前請先備份)

實例代碼如下:

  1. if ( $comments ) { 
  2.      foreach ( (array$comments as $comment) { 
  3.      $output .= '<li class="recentcomments">' . /* translators: comments widget: 1: comment 
  4. author, 2: post link */ sprintf(_x('%1$s said: %2$s''widgets'), get_comment_author_link 
  5. (), '<a href="' . esc_url( get_comment_link($comment->comment_ID) ) . '">' . strip_tags 
  6. (($comment->comment_content) . '</a>') . '</li>'
  7.      } 
其實這個$output就是輸出html代碼,所以可以在此根據自己的需要作出修改.

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 佛冈县| 五家渠市| 辉南县| 南投县| 伊金霍洛旗| 无为县| 分宜县| 北碚区| 当雄县| 奉化市| 弋阳县| 将乐县| 南漳县| 色达县| 博爱县| 鸡西市| 庄浪县| 沙河市| 香格里拉县| 洛浦县| 盐山县| 双鸭山市| 祥云县| 和平区| 观塘区| 新平| 金川县| 尼木县| 嘉善县| 连云港市| 肇庆市| 清远市| 齐河县| 邳州市| 乌拉特后旗| 化隆| 宜宾市| 特克斯县| 盐山县| 宁明县| 美姑县|