我使用Barcelona theme我需要獲取某個類別中發佈的作者。獲得作者誰在類別中的帖子
在我author.php模板,我有:
$barcelona_authors = get_users(array(
'fields' => 'ID',
'who' => 'authors',
'order' => 'DESC',
'orderby'=> 'post_count'
));
<?php
foreach ($barcelona_authors as $barcelona_author_id) {
barcelona_author_box($barcelona_author_id, false);
}
?>
如何讓誰已經張貼到類別編號59的作者?
例如,我試着用:
$barcelona_authors = get_posts('category=59');
但我發現了錯誤。任何幫助?
錯誤:
Notice: Object of class WP_Post could not be converted to int in /home/wp-includes/author-template.php on line 296
有什麼錯誤? – Technoh