File "single.php"
Full Path: /home/safaelji/recrut.automotomaroc.com/wp-content/themes/news-blog/single.php
File size: 1.03 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Best_Shop
*/
get_header();
?>
<div id="primary" class="content-area">
<div class="container">
<div class="breadcrumb-wrapper">
<?php news_blog_breadcrumb(); ?>
</div>
<div class="page-grid">
<main id="main" class="site-main">
<?php
while ( have_posts() ) :
the_post();
/*
* Include the Post Type content-single template
*/
get_template_part( 'template-parts/content', 'single' );
endwhile; // End of the loop.
news_blog_author_box();
news_blog_nav();
news_blog_get_related_posts();
news_blog_get_comments();
?>
</main><!-- #main -->
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php
get_footer();