-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (43 loc) · 1011 Bytes
/
Copy pathindex.php
File metadata and controls
49 lines (43 loc) · 1011 Bytes
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
<?php get_header(); ?>
<!-- Main -->
<div id="main">
<!-- Featured Post -->
<?php
$query = new WP_Query(array(
'post_type' => 'post',
'meta_key' => 'massievly_featured_post',
'meta_value' => 1,
));
if ( $query->have_posts() && $query->found_posts > 0 ) :
while ( $query->have_posts() ) : $query->the_post();
get_template_part('template-parts/posts/featured', 'post');
endwhile;
endif;
wp_reset_postdata();
?>
<!-- Posts -->
<section class="posts">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
get_template_part('template-parts/posts/content', get_post_format() );
endwhile;
?>
</section>
<!-- Footer -->
<footer>
<div class="pagination">
<?php
the_posts_pagination( array(
'screen_reader_text' => ' ',
'prev_text' => 'Previous',
'next_text' => 'Next'
) );
?>
</div>
</footer>
<?php else: ?>
<h1><?php _e('Nothing Post Found!!', 'massively'); ?></h1>
<?php endif; ?>
</div>
<?php get_footer(); ?>