array(
'name' => 'Heading',
'type' => 'wrap',
'atts' => array( ),
'usage' => '[heading] Content [/heading]',
'content' => __( 'Heading', 'shortcodes-ultimate' ),
'desc' => __( 'Styled heading', 'shortcodes-ultimate' )
),
# frame
'frame' => array(
'name' => 'Image frame',
'type' => 'wrap',
'atts' => array(
'align' => array(
'values' => array(
'left',
'center',
'none',
'right'
),
'desc' => __( 'Frame align', 'shortcodes-ultimate' )
)
),
'usage' => '[frame align="center"]
[/frame]',
'content' => __( 'Image tag', 'shortcodes-ultimate' ),
'desc' => __( 'Styled image frame', 'shortcodes-ultimate' )
),
# tabs
'tabs' => array(
'name' => 'Tabs',
'type' => 'wrap',
'atts' => array(
'style' => array(
'values' => array(
'1',
'2',
'3'
),
'default' => '1',
'desc' => __( 'Tabs style', 'shortcodes-ultimate' )
)
),
'usage' => '[tabs style="1"] [tab title="Tab name"] Tab content [/tab] [/tabs]',
'desc' => __( 'Tabs container', 'shortcodes-ultimate' )
),
# tab
'tab' => array(
'name' => 'Tab',
'type' => 'wrap',
'atts' => array(
'title' => array(
'values' => array( ),
'default' => __( 'Title', 'shortcodes-ultimate' ),
'desc' => __( 'Tab title', 'shortcodes-ultimate' )
)
),
'usage' => '[tabs style="1"] [tab title="Tab name"] Tab content [/tab] [/tabs]',
'content' => __( 'Tab content', 'shortcodes-ultimate' ),
'desc' => __( 'Single tab', 'shortcodes-ultimate' )
),
# spoiler
'spoiler' => array(
'name' => 'Spoiler',
'type' => 'wrap',
'atts' => array(
'title' => array(
'values' => array( ),
'default' => __( 'Spoiler title', 'shortcodes-ultimate' ),
'desc' => __( 'Spoiler title', 'shortcodes-ultimate' )
)
),
'usage' => '[spoiler title="Spoiler title"] Hidden text [/spoiler]',
'content' => __( 'Hidden content', 'shortcodes-ultimate' ),
'desc' => __( 'Hidden text', 'shortcodes-ultimate' )
),
# divider
'divider' => array(
'name' => 'Divider',
'type' => 'single',
'atts' => array(
'top' => array(
'values' => array(
'0',
'1'
),
'default' => '0',
'desc' => __( 'Show TOP link', 'shortcodes-ultimate' )
)
),
'usage' => '[divider top="1"]',
'desc' => __( 'Content divider with optional TOP link', 'shortcodes-ultimate' )
),
# spacer
'spacer' => array(
'name' => 'Spacer',
'type' => 'single',
'atts' => array(
'size' => array(
'values' => array(
'0',
'5',
'10',
'20',
'40'
),
'default' => '20',
'desc' => __( 'Spacer height in pixels', 'shortcodes-ultimate' )
)
),
'usage' => '[spacer size="20"]',
'desc' => __( 'Empty space with adjustable height', 'shortcodes-ultimate' )
),
# quote
'quote' => array(
'name' => 'Quote',
'type' => 'wrap',
'atts' => array(
'style' => array(
'values' => array(
'1',
'2',
'3'
),
'default' => '1',
'desc' => __( 'Quote style', 'shortcodes-ultimate' )
)
),
'usage' => '[quote style="1"] Content [/quote]',
'content' => __( 'Quote', 'shortcodes-ultimate' ),
'desc' => __( 'Blockquote alternative', 'shortcodes-ultimate' )
),
# pullquote
'pullquote' => array(
'name' => 'Pullquote',
'type' => 'wrap',
'atts' => array(
'align' => array(
'values' => array(
'left',
'right'
),
'default' => 'left',
'desc' => __( 'Pullquote alignment', 'shortcodes-ultimate' )
)
),
'usage' => '[pullquote align="left"] Content [/pullquote]',
'content' => __( 'Pullquote', 'shortcodes-ultimate' ),
'desc' => __( 'Pullquote', 'shortcodes-ultimate' )
),
# highlight
'highlight' => array(
'name' => 'Highlight',
'type' => 'wrap',
'atts' => array(
'bg' => array(
'values' => array( ),
'default' => '#DDFF99',
'desc' => __( 'Background color', 'shortcodes-ultimate' ),
'type' => 'color'
),
'color' => array(
'values' => array( ),
'default' => '#000000',
'desc' => __( 'Text color', 'shortcodes-ultimate' ),
'type' => 'color'
)
),
'usage' => '[highlight bg="#fc0" color="#000"] Content [/highlight]',
'content' => __( 'Highlighted text', 'shortcodes-ultimate' ),
'desc' => __( 'Highlighted text', 'shortcodes-ultimate' )
),
# bloginfo
'bloginfo' => array(
'name' => 'Bloginfo',
'type' => 'single',
'atts' => array(
'option' => array(
'values' => array(
'name',
'description',
'siteurl',
'admin_email',
'charset',
'version',
'html_type',
'text_direction',
'language',
'template_url',
'pingback_url',
'rss2_url'
),
'default' => 'left',
'desc' => __( 'Option name', 'shortcodes-ultimate' )
)
),
'usage' => '[bloginfo option="name"]',
'desc' => __( 'Blog info', 'shortcodes-ultimate' )
),
# permalink
'permalink' => array(
'name' => 'Permalink',
'type' => 'mixed',
'atts' => array(
'p' => array(
'values' => array( ),
'default' => '1',
'desc' => __( 'Post/page ID', 'shortcodes-ultimate' )
),
'target' => array(
'values' => array(
'self',
'blank'
),
'default' => 'self',
'desc' => __( 'Link target', 'shortcodes-ultimate' )
),
),
'usage' => '[permalink p=52]
[permalink p="52" target="blank"] Content [/permalink]',
'content' => __( 'Permalink text', 'shortcodes-ultimate' ),
'desc' => __( 'Permalink to specified post/page', 'shortcodes-ultimate' )
),
# button
'button' => array(
'name' => 'Button',
'type' => 'wrap',
'atts' => array(
'link' => array(
'values' => array( ),
'default' => '#',
'desc' => __( 'Button link', 'shortcodes-ultimate' )
),
'color' => array(
'values' => array( ),
'default' => '#AAAAAA',
'desc' => __( 'Button background color', 'shortcodes-ultimate' ),
'type' => 'color'
),
'size' => array(
'values' => array(
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'10',
'11',
'12'
),
'default' => '3',
'desc' => __( 'Button size', 'shortcodes-ultimate' )
),
'style' => array(
'values' => array(
'1',
'2',
'3',
'4'
),
'default' => '1',
'desc' => __( 'Button background style', 'shortcodes-ultimate' )
),
'dark' => array(
'values' => array(
'0',
'1'
),
'default' => '0',
'desc' => __( 'Dark text color', 'shortcodes-ultimate' )
),
'square' => array(
'values' => array(
'0',
'1'
),
'default' => '0',
'desc' => __( 'Disable rounded corners', 'shortcodes-ultimate' )
),
'icon' => array(
'values' => array( ),
'default' => '',
'desc' => __( 'Button icon', 'shortcodes-ultimate' )
),
'class' => array(
'values' => array( ),
'default' => '',
'desc' => __( 'Button class', 'shortcodes-ultimate' )
),
'target' => array(
'values' => array(
'self',
'blank'
),
'default' => 'self',
'desc' => __( 'Button link target', 'shortcodes-ultimate' )
)
),
'usage' => '[button link="#" color="#b00" size="3" style="3" dark="1" square="1" icon="image.png"] Button text [/button]',
'content' => __( 'Button text', 'shortcodes-ultimate' ),
'desc' => __( 'Styled button', 'shortcodes-ultimate' )
),
# fancy_link
'fancy_link' => array(
'name' => 'Fancy link',
'type' => 'wrap',
'atts' => array(
'color' => array(
'values' => array(
'black',
'white'
),
'default' => 'black',
'desc' => __( 'Link color', 'shortcodes-ultimate' )
),
'link' => array(
'values' => array( ),
'default' => '#',
'desc' => __( 'URL', 'shortcodes-ultimate' )
)
),
'usage' => '[fancy_link color="black" link="http://example.com/"] Read more [/fancy_link]',
'content' => __( 'Link text', 'shortcodes-ultimate' ),
'desc' => __( 'Fancy link', 'shortcodes-ultimate' )
),
# service
'service' => array(
'name' => 'Service',
'type' => 'wrap',
'atts' => array(
'title' => array(
'values' => array( ),
'default' => __( 'Service title', 'shortcodes-ultimate' ),
'desc' => __( 'Service title', 'shortcodes-ultimate' )
),
'icon' => array(
'values' => array( ),
'default' => '',
'desc' => __( 'Service icon', 'shortcodes-ultimate' )
),
'size' => array(
'values' => array(
'24',
'32',
'48'
),
'default' => '32',
'desc' => __( 'Icon size', 'shortcodes-ultimate' )
)
),
'usage' => '[service title="Service title" icon="service.png" size="32"] Service description [/service]',
'content' => __( 'Service description', 'shortcodes-ultimate' ),
'desc' => __( 'Service box with title', 'shortcodes-ultimate' )
),
# members
'members' => array(
'name' => 'Members',
'type' => 'wrap',
'atts' => array(
'style' => array(
'values' => array(
'0',
'1',
'2'
),
'default' => '1',
'desc' => __( 'Box style', 'shortcodes-ultimate' )
)
),
'usage' => '[members style="2"] Content for logged users [/members]',
'content' => __( 'Contnt for logged members', 'shortcodes-ultimate' ),
'desc' => __( 'Content for logged in members only', 'shortcodes-ultimate' )
),
# box
'box' => array(
'name' => 'Box',
'type' => 'wrap',
'atts' => array(
'title' => array(
'values' => array( ),
'default' => __( 'Box title', 'shortcodes-ultimate' ),
'desc' => __( 'Box title', 'shortcodes-ultimate' )
),
'color' => array(
'values' => array( ),
'default' => '#333333',
'desc' => __( 'Box color', 'shortcodes-ultimate' ),
'type' => 'color'
)
),
'usage' => '[box title="Box title" color="#f00"] Content [/box]',
'content' => __( 'Box content', 'shortcodes-ultimate' ),
'desc' => __( 'Colored box with caption', 'shortcodes-ultimate' )
),
# note
'note' => array(
'name' => 'Note',
'type' => 'wrap',
'atts' => array(
'color' => array(
'values' => array( ),
'default' => '#FFCC00',
'desc' => __( 'Note color', 'shortcodes-ultimate' ),
'type' => 'color'
)
),
'usage' => '[note color="#FFCC00"] Content [/note]',
'content' => __( 'Note text', 'shortcodes-ultimate' ),
'desc' => __( 'Colored box', 'shortcodes-ultimate' )
),
# private
'private' => array(
'name' => 'Private',
'type' => 'wrap',
'atts' => array( ),
'usage' => '[private] Private content [/private]',
'content' => __( 'Private note text', 'shortcodes-ultimate' ),
'desc' => __( 'Private note for post authors', 'shortcodes-ultimate' )
),
# list
'list' => array(
'name' => 'List',
'type' => 'wrap',
'atts' => array(
'style' => array(
'values' => array(
'star',
'arrow',
'check',
'cross',
'thumbs',
'link',
'gear',
'time',
'note',
'plus',
'guard',
'event',
'idea',
'settings',
'twitter'
),
'default' => 'star',
'desc' => __( 'List style', 'shortcodes-ultimate' )
)
),
'usage' => '[list style="check"]