My WP Trek

Playing with WordPress

Creating Shortcode

// [shortcode_name]
add_shortcode( 'shortcode_name', 'your_shortode_function' );

function your_shortode_function( $atts ) {
    return "name = { $atts['name'] }";
}

 

Simple Shortcode Example

Creating Shortcode

Leave a Reply

Your email address will not be published. Required fields are marked *

Scroll to top