Shortcake UI Alignment
This file contains 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