WordPress'teki tüm kullanıcıların rollerine veya yeteneklerine göre bir listesini nasıl alabilirim?
Örneğin:
- Ekran
all subscribers list
WordPress. - Ekran
all authors list
WordPress. - Ekran
all editors list
WordPress.
WordPress'teki tüm kullanıcıların rollerine veya yeteneklerine göre bir listesini nasıl alabilirim?
Örneğin:
all subscribers list
WordPress.all authors list
WordPress.all editors list
WordPress.Yanıtlar:
Bunu yapmanın farklı bir yolu olabilir, ancak bunu yapmanın en uygun yolu aşağıdadır.
<?php
$args = array(
'role' => 'Your desired role goes here.',
'orderby' => 'user_nicename',
'order' => 'ASC'
);
$users = get_users( $args );
echo '<ul>';
foreach ( $users as $user ) {
echo '<li>' . esc_html( $user->display_name ) . '[' . esc_html( $user->user_email ) . ']</li>';
}
echo '</ul>';
?>
Burada rolleri gruplandırmak için basit bir yaklaşım.
$wp_roles = wp_roles();
$result = count_users();
foreach ( $result['avail_roles'] as $role => $count )
{
if ( 0 == $count )
continue; //pass role none
$args = array(
'role' => $role
);
$users = get_users( $args );
$user = array();
for ( $i = 0; $i < $count ; $i++ )
$user[] = esc_html( $users[ $i ]->display_name ); //show display name
//output
echo wp_sprintf( '<h2>%1$s</h2><ul><li>%2$s</li></ul>',
esc_html( $wp_roles->role_names[ $role ] ),
implode( '</li><li>', $user )
);
}
Raja'nın cevabını genişleterek, bunu sizin için halledecek bir yardımcı fonksiyon da yazabilirsiniz:
<?php
# This goes in functions.php
function get_users_by_role($role, $orderby, $order) {
$args = array(
'role' => $role,
'orderby' => $orderby,
'order' => $order
);
$users = get_users( $args );
return $users;
}
?>
Ardından, kullanıcıları belirli bir rolle elde etmek için şunları yapabilirsiniz:
<?php $users = get_users_by_role('Your role', 'user_nicename', 'ASC'); ?>