0

我创建了一个页面,然后把这段代码

<section class="cont_pad">
    <div class="container_12">
        <article class="grid_8">
            {{ blog:posts limit="5" offset="5" category="adultos" }}
            <section class="post">
                {{ if imagen_portada }}
                <div class="postimg"><img src="{{ url:site }}files/thumb/{{ imagen_portada.id }}/610/220" class="pic2" alt="{{title}}" title="{{title}}"/></div>
                {{ endif }}
                <div class="entry-date">
                    <div class="posttime">           
                        <h3>{{ helper:date timestamp=created_on }}</h3>
                    </div>
                    <div class="entry-utility">
                        <a href="/users/view/{{ author_id }}"> {{ asset:image file="blog/icon1.png" }} {{ user:display_name user_id=author_id }}</a> 
                        <br/>
                        {{ if category }}
                        <span><a href="{{ url:site }}blog/category/{{ category:slug }}">{{ asset:image file="blog/icon2.png" }} {{ category:title }}</a></span>
                        {{ endif }}
                        {{ if keywords }}
                        <span><a href="{{ url:site }}blog/tagged/{{ keyword }}">{{ asset:image file="blog/icon2.png" }} {{ keyword }}</a></span>
                        {{ endif }}
                    </div>
                </div>
                <div class="entry-text">
                    <h3 class="posttitle"><a href="{{ url }}">{{ title }}</a></h3>
                    <div class="entry-content">
                        {{ intro }}
                        <p><a href="{{ url }}">{{ helper:lang line="blog:read_more_label" }}</a></p>
                    </div>
                </div>
            </section>
            {{ /blog:posts }}
            {{ pagination }}
        </article>
        <article class="grid_4 last-col">
            <aside id="sidebar">
                {{ widgets:area slug="widgets_blog_adultos" }}
            </aside>
        </article>
    </div>
</section>

里面显示来自“成人”类别的帖子,但我什么也没得到。我有一个帖子,它在这个类别中是实时的。怎么了?我阅读博客插件文档还检查了包“PyroCMS\Core\Modules\Blog\Plugins”中的博客插件代码,但找不到失败的地方。同样与同一个问题有关,我可以对所有帖子进行分页吗?我需要一些帮助,因为我找不到问题所在

4

1 回答 1

1

电脑上的时区设置错了吗?如果 PyroCMS 认为“发布日期”在未来,它不会在前端显示。

于 2013-05-16T20:00:15.047 回答