我想在10月CMS插件“静态页面”中添加额外的图片字段。有谁知道如何做到这一点?
答案 0 :(得分:3)
更好的答案是使用documentation for the plugin itself讨论通过布局向页面添加自定义变量(字段)。举个例子,假设您有布局default.htm:
description = "Default Layout with Image field"
[staticPages]
==
{variable name="banner" label="Banner" tab="Header" type="mediafinder" mode="image"}{/variable}
<img src="{{ banner | media }}" alt="" />
{{ page }}
{variable}{/variable}
标签可用于定义要在后端显示的额外字段,以用于使用定义这些变量的布局的页面。您可以使用几乎任何内置的10月字段类型作为变量的type
,然后通过Twig访问它来访问设置值:{{ nameOfVariable }}
答案 1 :(得分:0)
您需要扩展插件。您可以在official documentation.
中找到该怎么做