在drupal 8中仅显示“阅读更多”链接

时间:2016-02-28 09:48:56

标签: drupal themes customization drupal-8 teaser

如何仅显示阅读更多链接,并在节点预告片结尾处删除或取消设置其他链接,例如“添加新评论”或“2评论”?

1 个答案:

答案 0 :(得分:1)

要拥有自定义链接,您需要 links - node.html.twig 模板文件,它会执行主题覆盖以显示节点链接。

<强> 1 粘贴这个:

This is links.html.twig talking.... 
{% if links -%}
  {%- if heading -%}
    {%- if heading.level -%}
      <{{ heading.level }}{{ heading.attributes }}>{{ heading.text }}</{{ heading.level }}>
    {%- else -%}
      <h2{{ heading.attributes }}>{{ heading.text }}</h2>
    {%- endif -%}
  {%- endif -%}
  <ul{{ attributes }}>
    {%- for key, item in links -%}
      <li{{ item.attributes.addClass(key|clean_class) }}>
        {%- if item.link -%}
          {{ item.link }}
        {%- elseif item.text_attributes -%}
          <span{{ item.text_attributes }}>{{ item.text }}</span>
        {%- else -%}
          {{ item.text }}
        {%- endif -%}
      </li>
    {%- endfor -%}
  </ul>
{%- endif %}

进入你的编辑器

2。随意自定义。

3。另存为主题/ YOUR_THEME / templates / links.html.twig

4。清除缓存

5. 在行动中看到它

感谢您的反馈。