• I’m trying to create my own shortcode, put where does the Shortcode function do? Theme Functions? as i’ve tried this and no luck!

    function caption_shortcode( $atts, $content = null ) {
       return '<span class="caption">' . $content . '</span>';
    }
    add_shortcode( 'caption', 'caption_shortcode' );

    Any advice please ??

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Shortcode function’ is closed to new replies.