Skip to content

Instantly share code, notes, and snippets.

@Lindstromer
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save Lindstromer/11069b76b46d2f1787cf to your computer and use it in GitHub Desktop.

Select an option

Save Lindstromer/11069b76b46d2f1787cf to your computer and use it in GitHub Desktop.
Repeater property example
// Repeater property
$this->box( __('Marketing Funnels', 'smalsparet'), [
$this->property( [
'type' => 'repeater',
'title' => __('Marketing Funnels', 'smalsparet'),
'slug' => 'marketingfunnels',
'sidebar' => false,
'settings' => [
'items' => [
$this->property( [
'slug' => 'funnel_img',
'type' => 'image',
'title' => 'Image'
] ),
$this->property( [
'type' => 'string',
'title' => 'Header'
] ),
$this->property( [
'type' => 'text',
'title' => 'Description'
] ),
$this->property( [
'type' => 'string',
'title' => 'Button text',
] ),
$this->property([
'title' => 'Page',
'slug' => 'pagelink',
'type' => 'relationship',
'settings' => [
'choose_max' => 1,
]
] )
]
]
] )
] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment