-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
71 lines (51 loc) · 1.91 KB
/
index.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/* ------------------------------------------------------------------------- *
* Index template
/* ------------------------------------------------------------------------- */
?>
<?php get_header(); ?>
<?php
// Sections output (Main Page - Before posts)
if ( is_active_sidebar( 'main-page-before' ) && ! is_paged() ) { dynamic_sidebar( 'main-page-before' ); } else { ac_return_inactive_widgets('front-page-before'); };
?>
<?php if ( ! get_theme_mod( 'ac_disable_index_posts', false ) ) { ?>
<section class="container<?php ac_mini_disabled() ?> main-section clearfix">
<?php get_sidebar( 'browse' ); ?>
<div class="wrap-template-1 clearfix">
<section class="content-wrap" role="main">
<?php
// Index content wrap inside top action
do_action( 'ac_action_index_content_wrap_inside_top' );
// Main slider
if ( get_theme_mod( 'ac_enable_slider', false ) && is_front_page() && !is_paged() && ac_featured_posts_count() > 2 ) {
get_template_part( 'featured-content' );
}
?>
<div class="posts-wrap clearfix">
<?php
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
get_template_part( 'post-templates/content' );
endwhile;
else :
get_template_part( 'post-templates/content', 'no-articles' );
endif;
?>
</div><!-- END .posts-wrap -->
<?php
// Pagination
ac_paginate();
// Index content wrap inside bottom action
do_action( 'ac_action_index_content_wrap_inside_bot' );
?>
</section><!-- END .content-wrap -->
<?php get_sidebar(); ?>
</div><!-- END .wrap-template-1 -->
</section><!-- END .container -->
<?php } // ac_disable_index_posts ?>
<?php
// Sections output (Main Page - After posts)
if ( is_active_sidebar( 'main-page-after' ) && ! is_paged() ) { dynamic_sidebar( 'main-page-after' ); }
?>
<?php get_footer(); ?>