forked from adampatterson/Tentacle
-
Notifications
You must be signed in to change notification settings - Fork 1
Shortcode
adampatterson edited this page Feb 10, 2013
·
2 revisions
[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.