<select name="select-city" onchange="location = this.value;">
<option value="">Select a post to read</option>
<?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);
$numposts = $count_user_posts( $user_id );
while($author_posts->have_posts()) : $author_posts->the_post();
?>
<option value="<?php the_permalink(); ?>"><?php the_title(); ?></option>
<?php elseif ($numposts == 0):
echo \'You have no posts\';
?>
<?php endwhile;
else :
echo \'<a href="https://www.mysiteeeee.com/wp-login.php" >Log in</a>\';
endif; ?>
你好,我正在努力让这一切顺利进行,但我不明白。
如果用户登录,我会得到用户发布帖子的下拉列表。如果没有帖子,我会收到消息“你没有帖子”。如果用户未登录,则会打印登录链接。
我不能用第二部分“你没有帖子”
我做错了什么?谢谢