您不使用WP\\u User\\u查询的具体原因是什么?这会让你更容易做你想做的事。你可以读一下here.
就我所知,沿着这些思路的一些东西可以解决你的问题:
$args = array(
"meta_key" => "ArtistCategory",
"meta_value" => "X" //or "Z"
);
$authors = new WP_User_Query($args);
if (!empty($authors)) {
echo \'<ul>\';
foreach ($authors as $author){
//However you want to echo each author.
}
echo \'</ul>\';
}
else {
echo \'No authors found\';
}