Last active
August 29, 2015 14:20
-
-
Save Lindstromer/11069b76b46d2f1787cf to your computer and use it in GitHub Desktop.
Repeater property example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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