-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
125 lines (85 loc) · 3.35 KB
/
front-page.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php get_header();
while (have_posts()):
the_post();
?>
<section class="banner">
<div class="container">
<div class="banner_content">
<h1>Designing the Future</h1>
</div>
</div>
</section>
<section class="featured-posts">
<div class="container">
<h2>POPULAR POSTS:</h2>
<div class="featured-posts_grid">
<div class="featured-posts_large post_card">
<?php
$featured_posts_main = new WP_query(array(
'orderby' =>'date',
'posts_per_page' => '1'
));
while ($featured_posts_main->have_posts()):
$featured_posts_main->the_post();
get_template_part( 'templates/loop');
endwhile; wp_reset_postdata(); ?>
</div>
<div class="featured-posts_small">
<?php
$featured_posts = new WP_query(array(
'orderby' =>'date',
'posts_per_page' => '2',
'offset' => '1'
));
while ($featured_posts->have_posts()):
$featured_posts->the_post();
get_template_part( 'templates/loop');
endwhile; wp_reset_postdata(); ?>
</div>
</div>
</div>
</div>
</section>
<?php get_template_part( 'templates/section','subscribe'); ?>
<section class="category-front-page">
<div class="container">
<h2>MODERN</h2>
<div class="posts-main-loop">
<?php
$modern_category = new WP_query(array(
'category_name' =>'modern',
'posts_per_page' => '3'
));
while($modern_category->have_posts()):
$modern_category->the_post();
get_template_part( 'templates/loop');
endwhile; wp_reset_postdata(); ?>
</div>
<a href="<?php echo site_url('/category/modern') ?>" class="link-see-all">
<h3>SEE ALL POSTS</h3>
</a>
</div>
</section>
<section class="category-front-page">
<div class="container">
<h2>TRAVEL</h2>
<div class="posts-main-loop">
<?php
$modern_category = new WP_query(array(
'category_name' =>'travel',
'posts_per_page' => '3'
));
while($modern_category->have_posts()):
$modern_category->the_post();
get_template_part( 'templates/loop');
endwhile; wp_reset_postdata(); ?>
</div>
<a href="<?php echo site_url('/category/travel') ?>" class="link-see-all">
<h3>SEE ALL POSTS</h3>
</a>
</div>
</section>
<?php get_template_part( 'templates/section','instagram'); ?>
<?php
endwhile;
get_footer(); ?>