File "single.php"
Full Path: /var/www/bvnghean.vn/wp-content/themes/bvnghean/single.php
File size: 527 bytes
MIME-type: text/x-php
Charset: utf-8
<?php get_header(); ?>
<div class="wrapper container pb-20">
<div class="row mt-20">
<div class="col-9 px-15">
<?php if(function_exists('bcn_display')) bcn_display(); ?>
<h2 class="color-main mt-10"><?=the_title()?></h2>
<div class="the-content">
<?php the_content(); ?>
</div>
</div>
<div class="col-3 px-15">
<?php
if(is_active_sidebar( 'sidebar-category')){
dynamic_sidebar('sidebar-category');
}
the_post();
?>
</div>
</div>
</div>
<?php get_footer(); ?>