como criar shortcode
<?php
function abc()
{}
////create shortcode////
add_shortcode('page_name','abc');
?>
neha jaiswal
<?php
function abc()
{}
////create shortcode////
add_shortcode('page_name','abc');
?>
// 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');