-
Notifications
You must be signed in to change notification settings - Fork 1
/
archive.php
57 lines (44 loc) · 1.65 KB
/
archive.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
<?php
/* ------------------------------------------------------------------------- *
* Archive template
/* ------------------------------------------------------------------------- */
/**
* Filtered CSS classes
* ------
* section: grid-wrap
* div: grid-container grid-1 padding-small clearfix
* main: grid-col grid-posts-col site-main clearfix
* ------
*/
// Header and Footer templates
$businessx_header_tmpl = apply_filters( 'businessx_header___tmpl', '' );
$businessx_footer_tmpl = apply_filters( 'businessx_footer___tmpl', '' );
// Header
get_header( $businessx_header_tmpl );
// Title
businessx_get_heading_templ( 'archive', 'full-width' );
?>
<section role="main" id="content" class="<?php businessx_occ( 'businessx_index___section_classes' ); ?>">
<?php do_action( 'businessx_index__inner_sec_top' ); ?>
<div class="<?php businessx_occ( 'businessx_index___container_classes' ); ?>">
<?php do_action( 'businessx_index__inner_before' ); ?>
<main id="main" class="<?php businessx_occ( 'businessx_index___main_classes' ); ?>" role="main">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part( 'partials/posts/content', get_post_format() );
endwhile;
businessx_paged( '<nav class="posts-pagination grid-col grid-4x-col fw-bold ta-right clearfix" role="navigation">' );
else :
get_template_part( 'partials/posts/content', 'none' );
endif;
?>
</main>
<?php get_sidebar(); ?>
<?php do_action( 'businessx_index__inner_after' ); ?>
</div>
<?php do_action( 'businessx_index__inner_sec_bottom' ); ?>
</section>
<?php
// Footer
get_footer( $businessx_footer_tmpl ); ?>