首页 > CMS > Wordpress > 正文

获取 WordPress 所有用户的电子邮件

2024-09-07 00:51:03
字体:
来源:转载
供稿:网友

下面的代码可以帮你快速地将所有注册用户的电子邮件以列表的形式展示出来,代码如下:

  1. <?php  
  2. $args = array('orderby' => 'display_name'); 
  3. $wp_user_query = new WP_User_Query($args); 
  4. $authors = $wp_user_query->get_results(); 
  5. if (!emptyempty($authors)) { 
  6.      echo '<ul>'
  7.      foreach ($authors as $author) { 
  8.           $author_info = get_userdata($author->ID); 
  9.           echo '<li>' . $author_info->user_email . '</li>'
  10.      } 
  11.      echo '</ul>'
  12. else { 
  13.      echo 'No results'
  14. } ?> 

可以将代码根据需要放在主题适当的位置上.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表