溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

顯示W(wǎng)ordPress某個(gè)文章所有評論者名稱的實(shí)現(xiàn)方法

發(fā)布時(shí)間:2020-12-11 14:23:43 來源:億速云 閱讀:276 作者:小新 欄目:建站服務(wù)器

小編給大家分享一下顯示W(wǎng)ordPress某個(gè)文章所有評論者名稱的實(shí)現(xiàn)方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

使用場景,比如在文章適當(dāng)位置,顯示當(dāng)前已有:史珍香,秦壽生,焦厚根,朱逸群,夏建仁等發(fā)表了熱情揚(yáng)溢的評論,再加一個(gè)錨點(diǎn)鏈接,引導(dǎo)讀者跳轉(zhuǎn)到評論表單,也發(fā)個(gè)熱情揚(yá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文章的所有評論者名稱

在模板中使用:

<?php echo get_comment_authors_list('123'); ?>

在文章添加短代碼:

[comment_authors_list post_id="123" /]

二、調(diào)用當(dāng)前文章所有評論者名稱,與上面類似只是去掉其中的文章ID,適合放在文章正文模板中。

在模板中使用

<?php echo get_comment_authors_list(); ?>

在文章中添加短代碼:

[comment_authors_list /]

看完了這篇文章,相信你對顯示W(wǎng)ordPress某個(gè)文章所有評論者名稱的實(shí)現(xiàn)方法有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI