Created
December 3, 2015 15:54
-
-
Save rickalee/13e570cb45174d1f68ed to your computer and use it in GitHub Desktop.
Shortcake UI Alignment
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
shortcode_ui_register_for_shortcode( | |
'wfcf_deal', | |
array( | |
'label' => 'Deal', | |
'listItemImage' => 'dashicons-awards', | |
'attrs' => array( | |
array( | |
'label' => 'Select Deal', | |
'attr' => 'deal', | |
'type' => 'post_select', | |
'query' => array( 'post_type' => 'wfcf_deal' ), | |
'multiple' => false, | |
), | |
array( | |
'label' => 'Aligment', | |
'attr' => 'align', | |
'type' => 'select', | |
'options' => array( | |
'none' => 'None', | |
'left' => 'Left', | |
'center' => 'Center', | |
'right' => 'Right', | |
), | |
), | |
), | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment