We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
[short_code string]
[short_code foo="bar" bar="bing"]
add_shortcode( 'short_code', 'function_name' );
do_shortcode( $content );
function function_name ( $content ) { // Do something awesome with ( string ) }
function function_name ( $content ) { // Do something awesome with array( 'foo' => 'bar', 'bar' => 'bing' ) }
The shortcode library was atapted from WordPress and should function in exactly the same way.