-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsingle.php
More file actions
27 lines (24 loc) · 735 Bytes
/
Copy pathsingle.php
File metadata and controls
27 lines (24 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package imDeveloper
*/
get_header(); ?>
<div class="row">
<div class="container-fluid">
<section id="primary" class="single-main">
<main id="main" class="site-main">
<?php
while (have_posts()) : the_post();
get_template_part('template-parts/content', get_post_format());
endwhile; // End of the loop.
?>
</main><!-- #main -->
</section>
<?php get_sidebar(); ?>
</div><!-- #primary -->
<?php get_footer(); ?>
</div><!-- #primary -->