我是Gantry5框架的新手,我开始创建一个自定义粒子,并不是那么困难。
我正在使用Gantry5 for Wordpress,我想创建一个可以使用现有页面配置的粒子。
因此我需要一个表单字段,最好是一个下拉菜单,它会显示一个页面列表。
现在,Particle(custom / particle / page_particle.yaml)的配置如下所示:
name: Page
description: Displays the content of a Page
type: particle
form:
fields:
enabled:
type: input.checkbox
label: Enabled
description: Globally enable to the particles.
default: true
title:
type: input.text
label: Title
description: Customize the section title text.
#following lines describe what I need
page:
type: ##custom type
label: Page
default: -1
有没有人知道如何添加nessesary代码(放置位置,如何命名)以及如何告诉Gantry有关新类型的信息?
向前谢谢!