Components

Alerts

Hey, you! Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
[alert style="info" close="true"]<strong>Hey, you!</strong> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.[/alert]

Options

Argument Default Description
style info Style of alert – info, success, danger, warning.
close false Whether to show close button – true, false.

Styles

This is an “info” alert.
[alert style="info"]This is an "info" alert.[/alert]
This is a “success” alert.
[alert style="success"]This is a "success" alert.[/alert]
This is a “danger” alert.
[alert style="danger"]This is a "danger" alert.[/alert]
This is a “warning” alert.
[alert style="warning"]This is a "warning" alert.[/alert]

Dividers

[divider style="shadow"]

[divider style="solid"]

[divider style="dashed"]

[divider style="thick-solid"]

[divider style="thick-dashed"]

[divider style="double-solid"]

[divider style="double-dashed"]

[divider style="solid" icon="bolt"]
Argument Default Description
style solid Style of the divider — shadow, solid, dashed, thick-solid, thick-dashed, double-solid, double-dashed
color #cccccc Hex color value for divider. Note: Does not apply to “shadow” style divider.
opacity 1 Opacity of divider — 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, or 1.
Note: Does not apply to “shadow” style divider.
icon None Icon in middle of divider (view icons).
Ex: bolt, pencil, twitter, etc.
Note: Do not prefix icon ID with fa-.
Note: Does not apply to “shadow” style divider.
icon_color #666666 If you entered an icon, this it the hex color value for that icon
Note: Does not apply to “shadow” style divider.
icon_size 15 If you entered an icon, this is the font size for that icon in pixels
Note: Does not apply to “shadow” style divider.
width None A width for the divider in pixels. If no width, will stretch to 100% of container.
placement equal Where the divider sits between the content — equal, above (closer to content above), below (closer to content below)

Jumbotron (Hero Unit)

The Jumbotron, also known as “Hero Unit,” comes from Bootstrap’s Jumbotron feature.

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn More
[raw]
[jumbotron title="Hello, world!"]
This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

[button link="http://google.com" color="primary" size="large"]Learn More[/button]
[/jumbotron]
[/raw]

Hello, world!

This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

Learn More
[raw]
[jumbotron title="Hello, world!" bg_color="#3b86b6" title_color="#ffffff" text_color="#ffffff"]
This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.

[button color="custom" link="http://yourwebsite.com/example/" size="large" target="_self" block="false" bg_hover="#ffffff" border="#ffffff" text="#ffffff" text_hover="#333333" include_bg="false" include_border="true"]Learn More[/button]
[/jumbotron]
[/raw]

Options

Argument Default Description
title None Title of unit.
bg_color None Optional background color hex value for the unit. Ex: #000000
title_size 30px Optional CSS-formatted title text size for the unit. Ex: 25px
title_color None Optional title text color hex value for the unit. Ex: #000000
text_size 18px Optional CSS-formatted content text size for the unit. Ex: 15px
text_color None Optional content text color hex value for the unit. Ex: #000000
text_align left How to align text – left, right, center.
align None How to align unit – left, right, center, blank for no alignment.
max_width None Maxiumum width of unit, meant to be used with align left/right/center – 300px, 50%, etc.
class None Any additional CSS classes.
wpautop true Whether to apply wpautop on content. Shortcode will work best if you leave this set to true and wrap the [jumbotron] shortcode in the [raw] shortcode as shown in the example above. This way, WordPress’s automatic formatting will be applied when the shortcode is rendered, and will turn out nicer.

Panels

Panel heading

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

[panel title="Panel heading" footer="Optional footer text"]
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.
[/panel]

Styles

Style: default

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

Style: primary

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

Style: success

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

Style: info

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

Style: warning

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

Style: danger

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad veniam.

Options

Argument Default Description
style default Style of panel – default, primary, success, info, warning, danger.
title None Optional text for header title.
footer None Optional text for the footer.
text_align left How to align text – left, right, center.
class None Any additional CSS classes.
wpautop true Whether to apply wpautop on content.

These come from the Bootstrap modal javascript component.

Click me to see a popup

[popup text="Click me to see a popup" header="Title of popup"]
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ad minim veniam.
[/popup]

This popup will animate in

[popup text="This popup will animate in" header="Title of popup" animate="true"]
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut ad minim veniam.
[/popup]

Contact Us!

[popup text="Contact Us!" color="primary" icon_before="envelope" header="Contact Us" animate="true"]
This popup has a contact form inserted via Contact Form 7's shortcode.
[contact-form 1]
[/popup]
Argument Default Description
text (required) None Text of button to popup.
title None Title tag of button to popup, will default to $text if left blank.
color default Color of button to popup (view button colors).
icon_before None Icon before text of button to popup (view icons).
Ex: arrow-right, chevron-right, twitter, etc.
Note: Do not prefix icon ID with fa-.
icon_after None Icon after text of button to popup (view icons).
Ex: arrow-right, chevron-right, twitter, etc.
Note: Do not prefix icon ID with fa-.
size default Size of button – mini, small, default, large.
animate false Whether popup slides in or not – true, false.
header None Header text for popup.

Quote

The [blockquote] shortcode can be useful to help you format a quote and a source that looks nice with our baked-in version of Twitter Bootstrap, without having to mess with any HTML.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel.

John Smith
[blockquote quote="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel." source="John Smith"]

Note: This shortcode will appear differently, depending on how your current theme styles blockquotes.

Quote aligned left

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel. Sed cursus sed tortor vel molestie. Maecenas rhoncus aliquam nisl, non auctor urna tincidunt sit amet.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel.

John Smith

Praesent congue turpis quis lacus viverra accumsan. Nunc ullamcorper est eleifend ante aliquet elementum. Vivamus at accumsan dolor. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec viverra elit id vehicula tristique.

Morbi scelerisque libero faucibus justo mollis euismod. Phasellus quam velit, egestas ut feugiat non, sodales vel libero. Nullam orci sapien, euismod a nunc in, sollicitudin rutrum sapien. Fusce in velit non dolor fringilla iaculis. Nunc fringilla dolor felis. Maecenas nec nisi ac lectus pharetra volutpat non eget ligula. Suspendisse potenti.

[blockquote quote="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel." source="John Smith" align="left" max_width="300px"]

Quote aligned right

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel. Sed cursus sed tortor vel molestie. Maecenas rhoncus aliquam nisl, non auctor urna tincidunt sit amet.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel.

John Smith

Praesent congue turpis quis lacus viverra accumsan. Nunc ullamcorper est eleifend ante aliquet elementum. Vivamus at accumsan dolor. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec viverra elit id vehicula tristique.

Morbi scelerisque libero faucibus justo mollis euismod. Phasellus quam velit, egestas ut feugiat non, sodales vel libero. Nullam orci sapien, euismod a nunc in, sollicitudin rutrum sapien. Fusce in velit non dolor fringilla iaculis. Nunc fringilla dolor felis. Maecenas nec nisi ac lectus pharetra volutpat non eget ligula. Suspendisse potenti.

[blockquote quote="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper dictum sapien, ac adipiscing dui semper vel." source="John Smith" align="right" max_width="300px"]

Options

Argument Default Description
quote (required) None The text for the quote.
source None Optional source of the quote.
Ex: John Smith
source_link None An optional URL to link the source to.
Ex: http://google.com
align None How to align quote – left, right, or leave blank for no alignment.
max_width None Set a maximum width for the quote, to be used with align left or right. Ex: 300px, 50%, etc.
class None Any additional CSS classes you want to add to the blockquote.

Icon Lists

After you’ve inserted a standard unordered list, wrap it in the [icon_list] shortcode to make it stand out a little more.

General Usage

  • List item 1
  • List item 2
  • List item 3

[icon_list]
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
[/icon_list]

  • List item 1
  • List item 2
  • List item 3

[icon_list icon="star"]
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
[/icon_list]

  • List item 1
  • List item 2
  • List item 3

[icon_list icon="star" color="#eec627"]
<ul>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ul>
[/icon_list]

Options

Argument Default Description
icon caret-right Icon to be used (view icons).
Ex: arrow-right, chevron-right, twitter, etc.
Note: Do not prefix icon ID with fa-.
color None Color CSS value to get applied to icon, will default to current text color.
Ex: #660000.

Testimonials

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.

John Smith
CEO, Google
[testimonial name="John Smith" tagline="CEO" company="Google" company_url="http://google.com"]Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.[/testimonial]

Options

Argument Default Description
name None Name of the person giving the testimonial.
tagline None Tagline for the person giving the testimonial. Ex: CEO
company None The name of the company the person giving the testimonial works for. Ex: Google
company_url None The website URL for the company of the person giving the testimonial. Ex: http://google.com