<?php if (!is_user_logged_in()) { ?>
<p class="text-center">
برای ارسال نظر باید <a href="https://www. .com/login?redirect_to=<?php echo the_permalink();?>"><i class="fa fa-fw fa-sign-in"></i> وارد حساب کاربریتان شوید</a> یا <a href="/register"><i class="fa fa-fw fa-user-plus"></i> عضو سایت شوید</a>
</p>
<?php } ?>
<?php
$comments = get_comments(array(
\'post_id\' => get_the_ID(),
\'orderby\' => \'comment_date\',
));
echo wp_list_comments("callback=wpsaz_comment&end-callback=dubfa_div&per_page=5",$comments);
?>
此代码有什么问题?
注释仅在用户登录时返回。
我怎样才能修复它?