Friday 27 September 2013

How To Create Your Own Shortcode

How To Create Your Own Shortcode

If you are using WordPress you must know the short codes, short codes are simple text which makes to execute functions in WordPress.
In order to create short code follow this tutorial.

function short() {
return demo;
}

 add_shortcode( myshortcode , short );