-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
42 lines (31 loc) · 1 KB
/
single.php
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* The template for displaying all single posts.
*
* @package Sydney
*/
get_header(); ?>
<?php if (get_theme_mod('fullwidth_single')) { //Check if the post needs to be full width
$fullwidth = 'fullwidth';
} else {
$fullwidth = '';
} ?>
<?php do_action('sydney_before_content'); ?>
<div id="primary" class="content-area grid-70 <?php echo $fullwidth; ?>">
<main id="main" class="post-wrap" role="main">
<?php if ( has_post_thumbnail() && ( get_theme_mod( 'post_feat_image' ) != 1 ) ) : ?>
<div class="entry-thumb">
<?php the_post_thumbnail('sydney-large-thumb'); ?>
</div>
<?php endif; ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'page-templates/content', 'single' ); ?>
<?php sydney_post_navigation(); ?>
<?php endwhile; // end of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php do_action('sydney_after_content'); ?>
<?php if ( get_theme_mod('fullwidth_single', 0) != 1 ) {
get_sidebar();
} ?>
<?php get_footer(); ?>