小編給大家分享一下顯示W(wǎng)ordPress某個(gè)文章所有評(píng)論者名稱的實(shí)現(xiàn)方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
創(chuàng)新互聯(lián)主要從事網(wǎng)站設(shè)計(jì)、做網(wǎng)站、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)波密,十余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220使用場(chǎng)景,比如在文章適當(dāng)位置,顯示當(dāng)前已有:史珍香,秦壽生,焦厚根,朱逸群,夏建仁等發(fā)表了熱情揚(yáng)溢的評(píng)論,再加一個(gè)錨點(diǎn)鏈接,引導(dǎo)讀者跳轉(zhuǎn)到評(píng)論表單,也發(fā)個(gè)熱情揚(yáng)溢的評(píng)論。
將代碼添加到當(dāng)前主題函數(shù)模板functions.php中:
function get_comment_authors_list( $id = 0, $sep = ', ' ) { $post_id = $id ? $id : get_the_ID(); if ( $post_id ) { $comments = get_comments( array( 'post_id' => $post_id, 'status' => 'approve', 'type' => 'comment', ) ); $names = array(); foreach ( $comments as $comment ) { $name = $comment->comment_author; if ( $comment->user_id ) { $user = get_userdata( $comment->user_id ); $name = $user ? $user->display_name : $name; } $arr = explode( ' ', trim( $name ) ); if ( ! empty( $arr[0] ) && ! in_array( $arr[0], $names ) ) { $names[] = $arr[0]; } } unset( $comments ); $sep = $sep ? $sep : ', '; return implode( $sep, $names ); } } add_shortcode( 'comment_authors_list', 'comment_authors_list_shortcode' ); function comment_authors_list_shortcode( $atts = array() ) { $atts = shortcode_atts( array( 'post_id' => 0, 'list_sep' => '', ), $atts ); return get_comment_authors_list( $atts['post_id'], $atts['list_sep'] ); }
使用方法:
一、調(diào)用ID為:123文章的所有評(píng)論者名稱
在模板中使用:
<?php echo get_comment_authors_list('123'); ?>
在文章添加短代碼:
[comment_authors_list post_id="123" /]
二、調(diào)用當(dāng)前文章所有評(píng)論者名稱,與上面類似只是去掉其中的文章ID,適合放在文章正文模板中。
在模板中使用
<?php echo get_comment_authors_list(); ?>
在文章中添加短代碼:
[comment_authors_list /]
看完了這篇文章,相信你對(duì)顯示W(wǎng)ordPress某個(gè)文章所有評(píng)論者名稱的實(shí)現(xiàn)方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
新聞標(biāo)題:顯示W(wǎng)ordPress某個(gè)文章所有評(píng)論者名稱的實(shí)現(xiàn)方法-創(chuàng)新互聯(lián)
當(dāng)前URL:http://www.rwnh.cn/article38/dhhdpp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、關(guān)鍵詞優(yōu)化、商城網(wǎng)站、品牌網(wǎng)站制作、ChatGPT、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容