我在其他功能中使用过它,但它似乎不适用于这个特定的功能......
<?php
$page = get_the_title();
$blogusers = get_users('orderby=display_name');
foreach ($blogusers as $user) {
$cpt_count = wpse31443_author_has_custom_post_type( $user->ID, $page );
if (!empty($cpt_count)) {
echo '<li>' . $user->display_name . '' . $cpt_count1 . '</li>';
}
}
?>
如果我 $page = get_the_title();
改为 $page = 'title';
然后它可以工作,所以它是 get_the_title(); 但我不确定是什么,因为它已在其他功能中起作用。