-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
135 lines (121 loc) · 3.97 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
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
126
127
128
129
130
131
132
133
134
135
<?php
/**
* Main template file.
*
* @package WisePressTheme
*/
get_header();
?>
<!-- Hero Section -->
<section class="hero-section">
<div class="hero-articles container" data-aos="fade-right">
<?php
$hero_args = array(
'posts_per_page' => 3, /* how many post you need to display */
'offset' => 0,
'orderby' => 'post_date',
'order' => 'DESC',
'post_type' => 'post', /* your post type name */
'post_status' => 'publish'
);
$query = new WP_Query($hero_args);
if ($query->have_posts()) :
while ($query->have_posts()) : $query->the_post();
$archive_year = get_the_time('Y');
$archive_month = get_the_time('m');
$archive_day = get_the_time('d');
?>
<div class="article" style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<div class="backdrop-article">
<div class="inner-article">
<span class="article-category">
<a class="category__link" href="">
<?php the_category(); ?>
</a>
</span>
<h2 class="article-title">
<a class="article__link" href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a>
</h2>
<ul class="article-info">
<li class="article-author"><a class="article-author__link" href="<?php echo get_author_posts_url(get_the_author_meta('ID')) ?>"><?php the_author(); ?></a></li>
<li class="article-datetime"><a href="<?php echo get_day_link($archive_year, $archive_month, $archive_day); ?>"><?php the_date(); ?></a></li>
</ul>
</div>
</div>
</div>
<!-- here add code what you need to display like above title, image and more -->
<?php
endwhile;
endif;
?>
<!-- <div class="article first-article">
<div class="backdrop-article">
<div class="inner-article">
<span class="article-category">
<a class="category__link" href="">
Music
</a>
</span>
<h2 class="article-title">
<a class="article__link" href="">
Hip hop new albums
</a>
</h2>
<ul class="article-info">
<li class="article-author"><a class="article-author__link" href="">John Smith</a></li>
<li class="article-datetime">Jenuary 20, 2021</li>
</ul>
</div>
</div>
</div>
<div class="article second-article">
<div class="backdrop-article">
<div class="inner-article">
<span class="article-category">
<a class="category__link" href="">
Lifestyle
</a>
</span>
<h2 class="article-title">
<a class="article__link" href="">
Live music in LA
</a>
</h2>
<ul class="article-info">
<li class="article-author"><a class="article-author__link" href="">John Smith</a></li>
<li class="article-datetime">Jenuary 20, 2021</li>
</ul>
</div>
</div>
</div>
<div class="article third-article">
<div class="backdrop-article">
<div class="inner-article">
<span class="article-category">
<a class="category__link" href="">
Culture
</a>
</span>
<h2 class="article-title">
<a class="article__link" href="">
Best books to read while drinking coffe
</a>
</h2>
<ul class="article-info">
<li class="article-author"><a class="article-author__link" href="">John Smith</a></li>
<li class="article-datetime">Jenuary 20, 2021</li>
</ul>
</div>
</div>
</div> -->
</div>
</section>
<!-- End Hero Section -->
<?php
$extra_section = locate_template('extra-section.php');
load_template($extra_section);
?>
<?php
get_footer();