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

quality,Q 70

1689324329 20230714084529 64b10b29ceb67

摘要

下面的代码可以帮你快速地将所有注册用户的电子邮件以列表的形式展示出来。 ‘display_name’); $wp_user_query = new WP_User_Query($args); $authors = $wp_user_query->get_results(); if (!emptyempty($authors)) { echo ‘

    ‘; foreach ($authors as $author) { $author_info = get_userd….

1689324329 20230714084529 64b10b29d387d

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

  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. } ?>

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

原文:WordPress get all user emails

类似文章