-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhome.php
56 lines (37 loc) · 1.02 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
51
52
53
54
55
56
<?php
/**
* The template for displaying the blog index (latest posts)
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package Poseidon
*/
get_header();
// Get Theme Options from Database.
$theme_options = poseidon_theme_options();
?>
<section id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
// Display Magazine Homepage Widgets.
poseidon_magazine_widgets();
do_action( 'poseidon_before_blog' );
// Display Latest Posts.
if ( have_posts() ) :
// Display Blog Title.
poseidon_blog_title();
?>
<div id="post-wrapper" class="post-wrapper clearfix">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', esc_attr( $theme_options['post_content'] ) );
endwhile; ?>
</div>
<?php poseidon_pagination();
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
</main><!-- #main -->
</section><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>