当它包含php函数时,有人可以解释一下回显html吗?我试图回应以下内容,但找不到有用的参考。
<a href="<?php comments_link(); ?>"><?php comments_number('<span class="nocomments">comments</span>', '<span class="onecomment">1 comment</span>', '<span class="morecomments">% comments</span>'); ?></a>
感谢您的帮助!
更新了下面的代码,我希望我能说清楚。如果评论未打开/已关闭,我试图将 else 条件作为文本回显。
<?php
if ( comments_open() ) :
echo '<p>';
comments_popup_link( '<span class="one-comment">leave a comment</span>', '<span class="one-comment">1 comment</span>', '<span class="more-comments">% comments</span>', '');
echo '</p>';
else
echo
以下:
<a href="<?php comments_link(); ?>"><?php comments_number('<span class="zerocomments">comments</span>', '<span class="onecomment">1 comment</span>', '<span class="morecomments">% comments</span>'); ?></a>