
What is shortcode in? and how to create shortcode in wordpress?
A shortcode is a WordPress-specific code that lets you do many things with very small effort. Shortcodes can embed files or create objects that would normally require lots of complicated, ugly code in just one line. Shortcode = shortcut. Syntax <?php add_shortcode( 'shortcode-name' , 'shortcode-function-name'); ?> Above i have add function for shortcode, Now I’ll […]