-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.php
50 lines (44 loc) · 2.13 KB
/
home.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
43
44
45
46
47
48
49
50
<?php get_header();
get_template_part('templates/page', 'header'); ?>
<div id="content" class="container">
<div class="row">
<?php $homeid = get_option( 'page_for_posts' );
if(get_post_meta( $homeid, '_kad_blog_summery', true ) == 'full') {
$summary = 'full'; $postclass = "single-article fullpost";
} else {
$summary = 'normal'; $postclass = 'postlist';
} ?>
<div class="main <?php echo esc_attr( pinnacle_main_class() ); ?> <?php echo esc_attr($postclass); ?>" role="main">
<?php if (!have_posts()) : ?>
<div class="alert">
<?php _e('Sorry, no results were found.', 'ona-white-angus'); ?>
</div>
<?php get_search_form(); ?>
<?php endif; ?>
<?php if($summary == 'full'){
while (have_posts()) : the_post();
get_template_part('templates/content', 'fullpost');
endwhile;
} else {
while (have_posts()) : the_post();
get_template_part('templates/content', get_post_format());
endwhile;
}?>
<?php if ($wp_query->max_num_pages > 1) :
if(function_exists('pinnacle_wp_pagination')) {
pinnacle_wp_pagination();
} else { ?>
<nav class="post-nav">
<ul class="pager">
<li class="previous"><?php next_posts_link(__('← Older posts', 'ona-white-angus')); ?></li>
<li class="next"><?php previous_posts_link(__('Newer posts →', 'ona-white-angus')); ?></li>
</ul>
</nav>
<?php }
endif; ?>
</div><!-- /.main -->
<?php get_sidebar(); ?>
</div><!-- /.row-->
</div><!-- /.content -->
</div><!-- /.wrap -->
<?php get_footer(); ?>