Skip to content

Instantly share code, notes, and snippets.

@davisshaver
Created November 5, 2014 19:51
Show Gist options
  • Save davisshaver/4d9d5c3ddb70c076a987 to your computer and use it in GitHub Desktop.
Save davisshaver/4d9d5c3ddb70c076a987 to your computer and use it in GitHub Desktop.
How we register a UI for [fusion-content]
<?php
add_action( 'init', 'register_fusion_content_ui' );
function register_fusion_content_ui() {
shortcode_ui_register_for_shortcode(
'fusion-content',
array(
'label' => 'Content',
'listItemImage' => 'dashicons-editor-interactive',
'attrs' => array(
array(
'label' => 'ID',
'attr' => 'id',
'type' => 'text',
),
),
)
);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment