Values marked with a * are the default values and do not need to be specified
Accordions
Accordion Group
All accordions are wrapped in an accordion group
Shortcode Parameters
- load – which accordion is open on page load – 0,*1,2,3,4
- css – (optional) custom css class
Shortcode Filter Name
arconix_accordions_shortcode_args
Accordion
Shortcode Parameters
- title – Name the accordion (accepts text only, no html)
- last – For CSS styling.
Accordion Filter Name
arconix_accordion_shortcode_args
Example
Accordion 1
Accordion 1 content here
[accordions] | |
[accordion title="Accordion 1"] | |
Accordion 1 content here | |
[/accordion] | |
[accordion title="Accordion 2"] | |
Accordion 2 content here | |
[/accordion] | |
[accordion title="Accordion 3" last] | |
Accordion 3 content here | |
[/accordion] | |
[/accordions] |
Box
Shortcode Parameters
- color – 15 standard colors (black, blue, green, *gray/grey, lblue, lgray/lgrey, lgreen, lred, ltan, orange, purple, red, tan, yellow, white)
- icon – (optional) Enter the FontAwesome icon name you’d like to use
- icon_size – When using an icon, you can specify a particular icon size. Please note if you use something other than the default
fa-2x
you may need to adjust the line height CSS to vertically center the text - icon_other – If you’d like to change the location of the icon (for example you’d like it on the right), you can change that to
pull-right
Shortcode Filter Name
arconix_box_shortcode_args
Example
[box color="lgreen" icon="download"] | |
My Box content goes here | |
[/box] |
Button
Shortcode Parameters
- size – small, *medium, large, xl
- color – 11 standard colors: black, blue, green, *gray/grey, light gray/grey (lgray, lgrey), orange, purple, red, tan, yellow, white
- style – *classic, flat, clear
- icon – (optional) Enter the FontAwesome icon name you’d like to use
- icon_size – (optional) When using an icon, you can specify a particular icon size. Please note if you use something other than FontAwesome’s default you may need to adjust the line height CSS to vertically center the text
- url – enter the address the button should point to
- target – *self, blank
- rel – (optional) enter a relation for the link
Shortcode Filter Name
arconix_button_shortcode_args
Example
Google[button size="large" color="blue" url="http://google.com"]Google[/button] |
Tabs
Tab Group
All tabs are wrapped in an tab group
Shortcode Parameters
- id – defines the naming scheme for the tab ID’s – *name, number
- css – (optional) custom css class
Shortcode Filter Name
arconix_tabs_shortcode_args
Parameter Explanation
ID allows you to create a hyperlink to a specific tab in a tab group. It’s very popular with wizard-style tabs where each tab represents the next set of steps. All tab id’s are preceded with tab-
. Meaning if you were using the default ID of name
and your first tab’s title was Features, then your tab’s ID would be tab-features
. If you were using number
as your ID type, then the first tab’s id would be tab-1
. All titles are sanitized so they behave just like permalinks do, which means there are no apostrophes or spaces or any of that.
Continuing the “features” example, if I wanted to create a hyperlink to the “features” tab, here’s how I would create the link
- http://mydomain.com/my-page#tab-features if my ID was ‘name’
- http://mydomain.com/my-page#tab-1 if my ID was ‘number’
Something to keep in mind when using number
— only use it if you know it will be the only tab group on that page. If you have multiple tab groups on a page, use name
since multiple tab groups would have a tab-1, tab-2 etc… It’s less likely they’ll have the same tab titles.
Tab
The individual tab is coded
Shortcode Parameters
- title – Tab title (accepts text only, no html)
- icon – (optional) Enter the FontAwesome icon name you’d like to use
- icon_color – (optional) When using an icon you can select a specific color for that icon (default is text color). 11 standard colors are *black, blue, green, gray/grey, light gray/grey, orange, purple, red, tan, yellow, white
Shortcode filter name
arconix_tab_shortcode_args
Example
[tabs] | |
[tab title="Tab 1"] | |
Tab 1 content here | |
[/tab] | |
[tab title="Tab 2"] | |
Tab 2 content here | |
[/tab] | |
[tab title="Tab 3"] | |
Tab 3 content here | |
[/tab] | |
[/tabs] |
Toggle
Shortcode Parameters
- title – Name the toggle
- load – *closed, open – determine if the toggle loads in the closed or open position
- css – (optional) add your own custom class
Shortcode Filter Name
arconix_toggle_shortcode_args
Example
[toggle title="Toggle This"]Toggle Content to show on click[/toggle] |
Unordered List
Shortcode Parameters
- icon – Enter the FontAwesome icon name you’d like to use. Default is
fa-chevron-circle-right
- icon_color – Select the color for that icon. 11 standard colors are *black, blue, green, gray/grey, light gray/grey, orange, purple, red, tan, yellow, white
Shortcode Filter Name
arconix_list_shortcode_args
Example
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
[list icon="fa-send" icon_color="green"]
-= Use the unordered list button on the editor toolbar to create the actual list items =-
* Item 1
* Item 2
* Item 3
[/list]
[list icon="fa-send" icon_color="green"] | |
-= Use the unordered list button on the editor toolbar to create the actual list items =- | |
* Item 1 | |
* Item 2 | |
* Item 3 | |
[/list] |
Columns
Columns can be arranged in any pattern you wish so long as the sum of the fractions does not go over 1. Example – If you are using thirds, you can’t use two columns that are two-thirds each.
Shortcode Parameter
- last – use on the last column in a span
2-Column Example
## 2 columns - 50% ea ## | |
[one-half] | |
This is the left column content | |
[/one-half] | |
[one-half last] | |
This is the right column content | |
[/one-half] |
3-Column Example
## 2 columns - 33% / 66% ## | |
[one-third] | |
This is the column 1 content | |
[/one-third] | |
[two-thirds last] | |
This is the column 2 content | |
[/two-thirds] | |
## 3 columns - 33% ea ## | |
[one-third] | |
This is the column 1 content | |
[/one-third] | |
[one-third] | |
This is the column 2 content | |
[/one-third] | |
[one-third last] | |
This is the column 3 content | |
[/one-third] |
4-Column Example
## 2 columns - 25% / 75% ## | |
[one-fourth] | |
Content | |
[/one-fourth] | |
[three-fourths last] | |
Content | |
[/three-fourths] | |
## 3 columns - 25% / 25% / 50% ## | |
[one-fourth] | |
Content | |
[/one-fourth] | |
[one-fourth] | |
Content | |
[/one-fourth] | |
[two-fourths last] | |
Content | |
[/two-fourths] | |
## 4 columns - 25% ea ## | |
[one-fourth] | |
Content | |
[/one-fourth] | |
[one-fourth] | |
Content | |
[/one-fourth] | |
[one-fourth] | |
Content | |
[/one-fourth] | |
[one-fourth last] | |
Content | |
[/one-fourth] |
5-Column Example
## 2 columns - 40% / 60% ## | |
[two-fifths] | |
Content | |
[/two-fifths] | |
[three-fifths last] | |
Content | |
[/three-fifths] | |
## 3 columns - 20% / 60% / 20% ## | |
[one-fifth] | |
Content | |
[/one-fifth] | |
[three-fifths] | |
Three times the content | |
[/three-fifths] | |
[one-fifth last] | |
Content | |
[/one-fifth] | |
## 4 columns - 40% / 20% / 20% / 20% ## | |
[two-fifths] | |
Content | |
[/two-fifths] | |
[three-fifths] | |
Three times the content | |
[/three-fifths] | |
[one-fifth last] | |
Content | |
[/one-fifth] | |
## 5 columns - 20% each ## | |
[one-fifth] | |
Content | |
[/one-fifth] | |
[one-fifth] | |
Content | |
[/one-fifth] | |
[one-fifth] | |
Content | |
[/one-fifth] | |
[one-fifth] | |
Content | |
[/one-fifth] | |
[one-fifth last] | |
Content | |
[/one-fifth] |
Miscellaneous
Shortcodes below are fairly straightforward and offer minimal, if any, customization options.
Abbreviation
By marking up abbreviations you can give useful information to browsers, spellcheckers, screen readers, translation systems and search-engines.
Parameter
title – Explanation of abbreviation
Example
[button size="large" color="blue" url="http://google.com"]Google[/button] |
Code
Wraps the content in code
brackets
Example
[code]get_the_content()[/code] |
Highlight
Highlight specific text using this shortcode
Parameter
color – yellow (default)
Shortcode Filter Name
arconix_highlight_shortcode_args
Example
Text to highlight[highlight]Text to highlight[/highlight] |
Login / Logout
Add a login/logout link to your site
Example
[loginout] |
Site Link
Add a link to the site’s home page
Example
Tyche Softwares Documentation[site-link] |
The Year
Add the 4 digit year to your site (commonly used in copyright information)
Parameter
- before – What comes before the beginning copyright year
- start – Enter the beginning copyright year
- after – What comes after the current year
Shortcode Filter Name
arconix_the_year_shortcode_args
Example
[the-year before="©" start="2001" after="All Rights Reserved"] |
WP Link
Quickly add a link to WordPress.org to your site
Example
WordPress[wp-link] |