How To Create Shortcodes In WordPress?

function lorem_function() {
   
return 'here is the content to be displayed using a shortcode';
 
 }
 
add_shortcode('lorem', 'lorem_function');


Now use short code [lorem] to diplay the content stored in that function. 

No comments:

Post a Comment