Jez
0
Q:

how to use plugin shortcode in wordpress template

// function that runs when shortcode is called
function wpb_demo_shortcode() { 
 
// Things that you want to do. 
$message = 'Hello world!'; 
 
// Output needs to be return
return $message;
} 
// register shortcode
add_shortcode('greeting', 'wpb_demo_shortcode'); 
0
<?php echo do_shortcode("[insert-your-shortcode-here]"); ?>
0

New to Communities?

Join the community