Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Single template GB tiknik

Global Block tiknik

/*shortcode Content*/
function dc_post_content( $atts ){
    global $post;
    return do_shortcode( $post->post_content ); 
}
add_shortcode( 'dc_post_content', 'dc_post_content' );


/*shortcode Tags*/
function dc_post_tags() {
 return get_the_tag_list('<p>Tags: ',', ','</p>'); 
}
add_shortcode('dc_post_tags', 'dc_post_tags');


/*Shortcode Comment form*/
function dc_post_comment_form() {
	return x_get_view( 'global', '_comments-template' );
 }
 add_shortcode( 'dc_post_comment_form', 'dc_post_comment_form' );




/*single.php*/
<?php get_header(); ?>
<?php echo do_shortcode('XXXXXXXX'); ?>
<?php get_footer(); ?>