当没有评论时,ExpressionEngine 不显示

发布于 2024-10-30 17:35:40 字数 620 浏览 0 评论 0原文

我似乎无法弄清楚为什么 ExpressionEngine 在没有评论时不显示消息。现在的工作方式是,当没有评论时,不会显示任何内容。当有一条评论时,会显示该评论。我还注意到,当没有注释时,它不会执行 comment:entries 循环内的任何内容。

{exp:comment:entries channel="article" url_title="{segment_4}" orderby="{entry_date}" sort="desc" dynamic=“no”}
    {if no_results}
        <p>Nothing has been said yet. <a href="#leave-a-comment">Write something.</a></p>
    {/if}

        {comment}
        <p class="comment-by">By {if "{url}" != ""}<a href="{url}">{name}</a>{if:else}{name}{/if}  on {comment_date format="%Y %m, %d"}</p>
{/exp:comment:entries}

I can't seem to figure out why ExpressionEngine is not displaying the message when there are when there are no comments. The way it works now, when there are no comments nothing is displayed. When there is one comment, the comment is displayed. I also noticed when there are no comments it won't execute anything inside of the comment:entries loop.

{exp:comment:entries channel="article" url_title="{segment_4}" orderby="{entry_date}" sort="desc" dynamic=“no”}
    {if no_results}
        <p>Nothing has been said yet. <a href="#leave-a-comment">Write something.</a></p>
    {/if}

        {comment}
        <p class="comment-by">By {if "{url}" != ""}<a href="{url}">{name}</a>{if:else}{name}{/if}  on {comment_date format="%Y %m, %d"}</p>
{/exp:comment:entries}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梨涡 2024-11-06 17:35:40

我无法对此进行测试,但您已启用 dynamic="no"url_title="{segment_4}"

dynamic="no" 防止 URI 对博客内容产生任何影响。我不知道当使用 {segment_x} 变量指定 url_title 时这是否有任何影响。 (这是猜测)

但是,当以下内容适用于单页面条目时,您的代码似乎不必要地复杂:

{exp:comment:entries sort="asc" limit="20"}
{if no_results} There are no comments... {/if}    

{comment}

<p>By {name} on {comment_date format="%Y %m %d"}</p>

{/exp:comment:entries}

您不需要在注释标记中指定channel/url_title(假设您在单页面条目上,我相信你来自你的帖子)。

尝试一下,看看是否能得到想要的结果。

I'm unable to test this, but you have dynamic="no" on, and url_title="{segment_4}".

dynamic="no" prevents the URI from having any effect on the content of a weblog. Whether this has any effect when the url_title is specified using a {segment_x} variable, I do not know. (This is speculation)

However your code seems needlessly complicated, when the following will work fine for a single page entry:

{exp:comment:entries sort="asc" limit="20"}
{if no_results} There are no comments... {/if}    

{comment}

<p>By {name} on {comment_date format="%Y %m %d"}</p>

{/exp:comment:entries}

You don't need to specify channel/url_title in the comments tag (assuming you are on a single page entry, which I believe you are from your post).

Try that, see if you get the desired result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文