Hi
Is it possible to create reusable shortcodes with Meta Box plugin?
For Ex: - I create "button" meta box for post.
/* Button
---------------------------------------- */
array(
'id' => 'button',
'tab' => 'button',
'type' => 'group',
'fields' => array(
array(
'id' => 'icon',
'name' => 'Icon',
'type' => 'text',
),
array(
'id' => 'label',
'name' => 'Label',
'type' => 'text',
),
array(
'id' => 'position',
'name' => 'Position',
'type' => 'text',
),
array(
'id' => 'target',
'name' => 'Target',
'type' => 'text',
),
array(
'id' => 'url',
'name' => 'URL',
'type' => 'url',
),
),
),
And I want to reuse that "button" meta box more than one time with different values on particular post. As a shortcode.
Can it be achieved with Meta Box?
Thanks always and looking forward.