通过本文的方法,可以在 WordPress 每条评论显示注册用户角色标签。
代码一
自动在评论者名称后面添加代码添加到当前主题函数模板 functions.php 中:
- if ( ! class_exists( 'ZM_Comment_Author_Role_Label' ) ) :
- class ZM_Comment_Author_Role_Label {
- public function __construct() {
- add_filter( 'get_comment_author', array( $this, 'zm_get_comment_author_role' ), 10, 3 );
- add_filter( 'get_comment_author_link', array( $this, 'zm_comment_author_role' ) );
- }
- // 获取评论角色
- function zm_get_comment_author_role( $author, $comment_id, $comment ) {
- $authoremail = get_comment_author_email( $comment);
- // 检查用户是否注册
- if (email_exists($authoremail)) {
- $commet_user_role = get_user_by( 'email', $authoremail );
- $comment_user_role = $commet_user_role->roles[0];
- // 输出HTML
- $this->comment_user_role = '<span class="comment-author-label comment-author-label-' . $comment_user_role . '">' . ucfirst( $comment_user_role ) . '</span>';
- } else {
- $this->comment_user_role = '';
- }
- return $author;
- }
- // 显示评论角色
- function zm_comment_author_role( $author ) {
- return $author .= $this->comment_user_role;
- }
- }
- new ZM_Comment_Author_Role_Label;
- endif;
之后,会在每条评论用户名称后面显示其注册角色。
代码二
自定义显示位置,代码添加到当前主题函数模板 functions.php 中
- function zm_get_comment_author_role() {
- global $author, $comment_id, $comment;
- $authoremail = get_comment_author_email( $comment);
- // 检查用户是否注册
- if (email_exists($authoremail)) {
- $commet_user_role = get_user_by( 'email', $authoremail );
- $comment_user_role = $commet_user_role->roles[0];
- // 输出HTML
- $comment_user_role = '<span class="comment-author-label comment-author-label-' . $comment_user_role . '">' . ucfirst( $comment_user_role ) . '</span>';
- } else {
- $comment_user_role = '';
- }
- echo $comment_user_role;
- }
在评论模板适当位置添加:
- <?php zm_get_comment_author_role(); ?>
最后,添加相应的 CSS 样式。
- .comment-author-label {
- padding: 5px;
- font-size: 14px;
- border-radius: 3px;
- }
- .comment-author-label-editor {
- background-color: #efefef;
- }
- .comment-author-label-author {
- background-color: #faeeee;
- }
- .comment-author-label-contributor {
- background-color: #f0faee;
- }
- .comment-author-label-subscriber {
- background-color: #eef5fa;
- }
- .comment-author-label-administrator {
- background-color: #fde9ff;
- }
另一段更简单的代码:
- <?php
- $user_id = get_comment( get_comment_ID() )->user_id;
- if ( $user_id ){
- $user_info = get_userdata( $user_id );
- echo implode( ', ', $user_info->roles ) ;
- }
- ?>
直接添加到评论模板适当位置。
文章標題:WordPress 评论显示用户角色
文章連結:https://www.wuyanshuo.cn/812.html
更新時間:2022年5月25日
1、本站所有資源均不添加推廣檔案或浮水印,壓縮包內若有廣告檔案和浮水印請勿輕易相信。
2、本站資源均為兩層壓縮,第一層7z(尾碼若為wys,請自行修改為7z)有解壓密碼; 第二層zip或cbz,無解壓密碼,可直接使用漫畫類軟件程式查看; 詳情可參攷解壓教程。
3、本站大部分內容均收集於網絡! 若內容侵犯到您的權益,請發送郵件至:admin#wysacg.top我們將第一時間處理! 資源所需價格並非資源售賣價格,是收集、整理、編輯詳情以及本站運營的適當補貼,並且本站不提供任何免費技術支援。 所有資源僅限於參攷和學習,版權歸原作者所有!