在 October CMS 中,如何使静态页面中的图像可编辑?
In October CMS, how can I make an image editable in a Static Page?
我想使用 October CMS "Static Pages" 插件设置通用营销模板。目的是让我的客户创建自己的营销页面。假设我的布局包含 HTML 类似于:
<img src="/path/to/image.jpg">
<hr>
<p>Some uneditable copy</p>
{% placeholder copy default title="Main Page Copy" type="html" %}
<h1>Some Awesome Headline</h1>
<p>Sea no omnium deserunt, eum tale movet sensibus te.</p>
{% endplaceholder %}
我怎样才能允许我的客户更改图像?
目前好像不支持:https://github.com/rainlab/pages-plugin/issues/13, but maybe you can use the media manager
你在这里有一个完整的解释
https://octobercms.com/blog/post/building-client-friendly-websites
将此代码添加到您的布局中
{variable name="banner" label="Banner" tab="Header" type="mediafinder" mode="image"}{/variable}
并将其添加到您的 html 标记中
<img src="{{ banner|media }}" alt="" />
您将在后端看到额外的字段
我想使用 October CMS "Static Pages" 插件设置通用营销模板。目的是让我的客户创建自己的营销页面。假设我的布局包含 HTML 类似于:
<img src="/path/to/image.jpg">
<hr>
<p>Some uneditable copy</p>
{% placeholder copy default title="Main Page Copy" type="html" %}
<h1>Some Awesome Headline</h1>
<p>Sea no omnium deserunt, eum tale movet sensibus te.</p>
{% endplaceholder %}
我怎样才能允许我的客户更改图像?
目前好像不支持:https://github.com/rainlab/pages-plugin/issues/13, but maybe you can use the media manager
你在这里有一个完整的解释 https://octobercms.com/blog/post/building-client-friendly-websites
将此代码添加到您的布局中
{variable name="banner" label="Banner" tab="Header" type="mediafinder" mode="image"}{/variable}
并将其添加到您的 html 标记中
<img src="{{ banner|media }}" alt="" />
您将在后端看到额外的字段