Skip to content

Instantly share code, notes, and snippets.

@davisshaver
Created November 10, 2014 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davisshaver/e22955707e9f4f25da19 to your computer and use it in GitHub Desktop.
Save davisshaver/e22955707e9f4f25da19 to your computer and use it in GitHub Desktop.
Registering a shortcode UI for pullquotes
<?php
add_action( 'init', 'register_fusion_pullquote_ui' );
function register_fusion_pullquote_ui() {
shortcode_ui_register_for_shortcode(
'fusion-pullquote',
array(
'label' => 'Pullquote',
'listItemImage' => 'dashicons-editor-quote',
'attrs' => array(
array(
'label' => 'Quote',
'attr' => 'content',
'type' => 'textarea',
),
array(
'label' => 'Source',
'attr' => 'source',
'type' => 'text',
),
),
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment