我正试图通过作者在我的口头博客中发言,但有些犹豫不决,很可能是因为我没有完全掌握如何利用这些职能。 当我这样做时:
$authors = $wpdb->get_results( SELECT DISTINCT post_author FROM .$wpdb->posts);
if($authors):
foreach($authors as $author):
if(the_author_meta( display_name , $author->post_author) != admin ): //my line
我试图将“行政”用户排除在我的住所之外,但在我执行时。 我在包括行政在内的一页上看到了所有作者的名字。 因此,条件不是有条件的,而是反应的。
我做了什么错误?
感谢