xxxxxxxxxx
function f_name() {
ob_start(); ?>
Your HTML Code
<?php
return ob_get_clean();
}
add_shortcode( 'shortcode', 'f_name' );
//Use this in HTML
[shortcode]
**Note this is note Necessary
ob_start(); ?>
<?php
return ob_get_clean();
}
**In Php
<?php echo do_shortcode("[your_shortcode]"); ?>
xxxxxxxxxx
function create_shortcode(){
return "<h2>Hello world !</h2>";
}
add_shortcode('my_shortcode', 'create_shortcode');
// Use [my_shortcode]
xxxxxxxxxx
function wpdocs_bartag_func( $atts ) {
$atts = shortcode_atts(
array(
'foo' => 'no foo',
'bar' => 'default bar',
), $atts, 'bartag' );
return 'bartag: ' . esc_html( $atts['foo'] ) . ' ' . esc_html( $atts['bar'] );
}
add_shortcode( 'bartag', 'wpdocs_bartag_func' );
xxxxxxxxxx
// 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');
xxxxxxxxxx
function wp_demo_shortcode() {
//Turn on output buffering
ob_start();
$code = 'Hello World';
ob_get_clean();
// Output needs to be return
return $code;
}
// register shortcode
add_shortcode('helloworld', 'wp_demo_shortcode');
xxxxxxxxxx
function user() {
ob_start();
include(get_stylesheet_directory() . '/tutorial.php');
return ob_get_clean();
}
add_shortcode( 'countdown', 'user' );
xxxxxxxxxx
<?php
function sortcode_function() {
ob_start(); ?>
//HTML CODE
<h2>Hello Shortcode</h2>
<?php
return ob_get_clean();
}
add_shortcode( 'your_shortcode', 'sortcode_function' );
//use the shortcode - [your_shortcode]