Viewing 1 replies (of 1 total)
  • Plugin Author Caseproof LLC

    (@caseproof)

    Hi @fugarul

    We don’t have a shortcode to display the list of users, but you can try to add this code at the end of your theme’s functions.php file:

    add_shortcode('mb-display-users-role', function($atts) {
      if(!isset($atts['role'])) return;
      
      $users = get_users( array('role' => $atts['role']));
      if(empty($users)) return;
      
      echo '<ul>';
      foreach ( $users as $user ) {
        echo '<li>' . esc_html( $user->display_name ) . '</li>';
      }
      echo '</ul>';
    });

    and then use [mb-display-users-role role="subscriber"] shortcode with your role.

    Hopefully, that helps.

Viewing 1 replies (of 1 total)

The topic ‘list users shortcode’ is closed to new replies.