我目前正在使用下面的代码。它显示当前登录用户发布的所有帖子的链接。我想显示“没有帖子”如果当前登录的用户还没有帖子,则显示消息。感谢所有的帮助。
<?php if ( is_user_logged_in() ): global $current_user;
wp_get_current_user();
$author_query = array('posts_per_page' => '-1','author' => $current_user->ID);
$author_posts = new WP_Query($author_query);
while($author_posts->have_posts()) : $author_posts->the_post();
?>
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<?php endwhile; ?>
<?php else : ?>
<p>No posts</p>
<?php endif; ?>
慕容708150