// [shortcode_name]
add_shortcode( 'shortcode_name', 'your_shortode_function' );
function your_shortode_function( $atts ) {
return "name = { $atts['name'] }";
}
Simple Shortcode Example
Creating Shortcode
Playing with WordPress
// [shortcode_name]
add_shortcode( 'shortcode_name', 'your_shortode_function' );
function your_shortode_function( $atts ) {
return "name = { $atts['name'] }";
}
Simple Shortcode Example