Ben kullanıcı rolü ile benim Yazar avatarı listesini filtrelemek istiyorum

0 Cevap php

İşte benim kodudur. Ben sadece yazarları görüntülemek ve kullanıcı rolleri kalanını dışlamak istiyorum. Ben sadece saç sol birkaç ipliklerini var, lütfen yardım edin!!

function contributors() { global $wpdb;

$authors = $wpdb->get_results("SELECT ID, user_nicename from $wpdb->users ORDER BY display_name");

foreach($authors as $author) 
{ 
echo "< li >"; 
echo "< a href=\"".get_bloginfo('url')."/?author="; 
echo $author->ID; echo "\">"; 
echo get_avatar($author->ID, 125); 
echo ""; 
echo ''; 
echo "< a href=\"".get_bloginfo('url')."/?author="; 
echo $author->ID; 
echo "\">"; the_author_meta('display_name', $author->ID); 
echo ""; 
echo ""; 
echo ""; } }

0 Cevap