Nested shortcodes

If you want to add a complex shortcode like in the example below you can set it within MotoPress WordPress Visual Builder element list.


[my_gallery]
    [my_gallery_item]content1[/my_gallery_item]
    [my_gallery_item]content2[/my_gallery_item]
    [my_gallery_item]content3[/my_gallery_item]
[/my_gallery]

Nested Object Parameters

  • containsstring – id of nested object.
  • itemsarray – it includes control settings to manage the nested objects.
  • rulesarray – it includes parameters for linking the controls to nested objects.
  • eventsarray – it includes parameters which describe the object behavior while editing.

//...
'elements' => array(
'type' => 'group',
'contains' => 'inner_object', // nested shortcode name
'items' => array(
'label' => array( // control label text of each nested object
'default' => __('Item label', 'domain'), // Default text
'parameter' => 'title' // nested shortcode title attribute name
),
'count' => 2 // number of items automatically created for new object
),
'text' => __('Add new item', 'domain'), // text of the button to add new element
'disabled' => false,
'rules' => array(
'rootSelector' => '.item', // CSS-selector of the internal object
'activeSelector' => '> a', // CSS-selector of the active element
'activeClass' => 'active' // CSS class name of the active element
),
'events' => array(
'onActive' => array( // JavaScript event when item is activated.
'selector' => '> a', // CSS selector of the element
'event' => 'click' // JavaScript event name
),
'onInactive' => array( // JavaScript event when item is de-activated.
'selector' => '> a', // CSS selector of the element
'event' => 'click' // JavaScript event name
)
)
)
//...

Tips

  • events parameter is used if you need to perform some action (for example show/hide edited object if it is visible while performing a certain action only) with nested object while editing it (folding/unfolding accordion control).
  • activeSelector parameter and event selector selector are used according to rootSelector. If these selectors indicate to the same element as rootSelector we should equate them to empty string.
  • rootSelector parameter is used if events parameters are set.
  • activeSelector and activeClass are used if you need to add or delete activation class of nested object while performing events.

You can see below an example of new created grid gallery object where you can add items using accordion method.
View Example

mpce-nested-shortcodes.jpg

Related Topics

Leave a Reply

Your email address will not be published. Required fields are marked *