My single.php:
<?php get_header() ?>
<div class=”row”>
<section class=”col-md-9″>
<?php
while (have_posts()) {
the_post();
?>
<article id=”post-<?php the_ID() ?>” <?php post_class() ?> itemscope itemtype=”https://schema.org/Article”>
<header>
<div class=”hidden-print” style=”font-size: 0.8em; margin-bottom: 1%;”><?php if (function_exists(‘dimox_breadcrumbs’)) dimox_breadcrumbs(); ?></div>
<div style=”font-size: 0.8em; color: #7e0b44;”><?php the_time(‘j F, Y g:iA’) ?></div>
<h3 itemprop=”name headline”><?php the_title() ?></h3>
</header>
<div id=”conteudo” itemprop=”articleBody”>
<?php the_content() ?>
</div>
<div class=”row hidden-print”><hr />
<div class=”col-md-6″ id=”botoes_esq” style=”margin-bottom: 5%;”>
<span class=”glyphicon glyphicon-circle-arrow-left”></span> Voltar
<span class=”glyphicon glyphicon-print”></span> Imprimir
<span class=”glyphicon glyphicon-home”></span> Página Inicial
</div>
<div class=”col-md-6 hidden-print” style=”z-index: 99;”>
<?php
echo do_shortcode(‘[really_simple_share]’);
?>
</div>
</div>
<div class=”hidden-print”>
<?php
wp_related_posts()
?>
</div>
</article>
<?php } ?>
</section>
<div class=”col-md-3 hidden-print”>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer() ?>