Test Shortcode
// Add Shortcode function my_custom_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'the_postID' => '44', ), $atts ); } add_shortcode( 'test_shortcode', 'my_custom_shortcode' );
// Add Shortcode function my_custom_shortcode( $atts ) { // Attributes $atts = shortcode_atts( array( 'the_postID' => '44', ), $atts ); } add_shortcode( 'test_shortcode', 'my_custom_shortcode' );