Skip to content

Instantly share code, notes, and snippets.

@prosantamazumder
Created April 2, 2020 20:27
Show Gist options
  • Save prosantamazumder/d701503b8ed946fbfa7ea265818ee7d6 to your computer and use it in GitHub Desktop.
Save prosantamazumder/d701503b8ed946fbfa7ea265818ee7d6 to your computer and use it in GitHub Desktop.
create wp short code WordPress
SHORTCODE.PHP
------------------------
function functionname(){
ob_start();
?>
HTMLCODEHERE..
<?php
return ob_get_clean();
}
add_shortcode('shortcodename', 'functionname');
---------------------------
show any page
---------------------------
<?php echo do_shortcode('[shortcodename]'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment