如何在节点预告片末尾仅显示阅读更多链接,并删除或取消设置其他链接,例如“添加新评论”或“2 条评论”?
问问题
2148 次
1 回答
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.看到它在行动
感谢您的反馈意见。
于 2016-02-29T08:37:45.390 回答