OwlCyberSecurity - MANAGER
Edit File: single.php
<?php get_header(); ?> <div class="col-md-10"> <?php if (have_posts()) : the_post(); ?> <div class="box-central"> <h2 class="barra-rosa titulo">Blog</h2> <div class="text-left box-central-texto"> <h2><?php the_title() ?></h2> <div class="text-right"> <strong> <?php the_author(); ?> - <?php the_time('l, d F \d\e Y'); ?> </strong> </div> <div class="text-justify"> <?php the_content(); echo '<hr>'; $posttags = get_the_tags(); if ($posttags) { echo 'Tags: '; foreach ($posttags as $tag) { $url = get_tag_link($tag); $name = $tag->name; echo "<a href='{$url}'>#{$name}</a> "; } } echo " | Categorias: " . get_the_category_list(' - '); ?> </div> <br /> </div> </div> <br> <!--COMENTÁRIOS DISQUS--> <div class="box-central" id="box-comments"> <h2 class="barra-rosa titulo">Comments</h2> <div class="textao"> <div id="disqus_thread"></div> <script> (function() { var d = document, s = d.createElement('script'); s.src = '//kawaiigames.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> <script id="dsq-count-scr" src="//kawaiigames.disqus.com/count.js" async></script> </div> <!--FACEBOOK COMMENTS--> <?php /* // If comments are open or we have at least one comment, load up the comment template. if (comments_open() || get_comments_number()) { ?> <br> <div class="box-central"> <?php comments_template(); ?> </div> <?php } */ ?> <?php endif; ?> </div> <?php get_footer();