0

我在 Expression Engine 中看到我可以使用 {embed:title} 和 {site_name} 变量,但现在我需要一个变量来提取文章本身的摘录或描述。有这样的变量/标签吗?

4

2 回答 2

2

ExpressionEngine 标记仅基于您自己定义的自定义字段。因此,在您的“文章”频道的字段组中,您将有一些字段,可能{article_summary}是 、{article_body}{article_image}等。要显示您的摘要,只需{article_summary}在您的模板中使用。

我假设您可能来自 WordPress 之类的东西,其中每条内容the_content()都有the_excerpt()......不是那样的。您可以定义用于每个通道的字段 - 您可以完全控制。{title}{entry_date}

于 2012-04-24T20:26:01.500 回答
0

这是您必须包含在 EE 模板中的实际代码。

{exp:channel:entries channel="article" limit="5" dynamic="no"}
        <div class="home_thumb">
        <h1><a href="{title_permalink="post/articles"}">{title}</a></h1>
            <div class="home_thumb_img">
                <a href="{title_permalink="post/articles"}"><img src="{article_image}"></a>
                {if article_content}
                    <p>{article_content}</p>
                {/if}
            </div>
        </div>
    {/exp:channel:entries}
于 2013-09-10T02:13:31.750 回答