在shopify中增加摘录的大小

时间:2016-02-27 05:45:09

标签: php content-management-system shopify

我正在显示某些文字和最后的博客文章阅读更多按钮,以便在我的shopify网站上查看完整的文章

这是我正在使用的代码

<div class="rte">
  {% if article.image %}
    {% assign image_alt = article.title | escape %}
    <p>{{ article | img_url: '1024x1024' | img_tag: image_alt, 'article__image' | link_to: article.url }}</p>
  {% endif %}
  {% if article.excerpt.size > 0 %}
    {{ article.excerpt }}
  {% else %}
    <p>{{ article.content | strip_html | truncatewords: 100 }}</p>
  {% endif %}
</div>

它工作得很好现在我只设置了一篇文章来展示

{% paginate blog.articles by 1 %}

它只显示了一篇文章。 我只是想通过阅读更多按钮将文章的简短描述文本增加到50%。

这可以增加article.excerpt的大小,这样我将显示更多带有更多按钮的文本

我试过这个,但这对我不起作用

{{ article.excerpt.size = 1200 }}

0 个答案:

没有答案