Answers for "shortcode in php wp"

PHP
9

php to shortcode

echo do_shortcode('[name_of_shortcode]');
Posted by: Guest on June-17-2020
1

shortcode in wp

function user() {     
 ob_start();
 include(get_stylesheet_directory() . '/tutorial.php');
 return ob_get_clean();
}
add_shortcode( 'countdown', 'user' );
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language