Answers for "how to use plugin shortcode in wordpress template"

PHP
7

wordpress create shortcode

function create_shortcode(){
    return "<h2>Hello world !</h2>";
}
add_shortcode('my_shortcode', 'create_shortcode');
// Use [my_shortcode]
Posted by: Guest on May-21-2021
1

how to use plugin shortcode in wordpress template

<?php echo do_shortcode("[insert-your-shortcode-here]"); ?>
Posted by: Guest on November-30-2020

Code answers related to "how to use plugin shortcode in wordpress template"

Browse Popular Code Answers by Language