-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.php
More file actions
50 lines (44 loc) · 1.65 KB
/
home.php
File metadata and controls
50 lines (44 loc) · 1.65 KB
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
<?php get_header(); ?>
<!-- Main -->
<div id="main">
<p>home</p>
<?php $my_query = new WP_Query( 'category_name=featured&posts_per_page=1' ); ?>
<?php while ( $my_query->have_posts() ) : $my_query->the_post(); ?>
<?php $do_not_duplicate = $post->ID; ?>
<!-- Featured Post -->
<article class="post featured">
<header class="major">
<span class="date"><?php the_date('l, F j, Y'); ?></span>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<p><?php the_excerpt(); ?></p>
</header>
<a href="<?php the_permalink(); ?>" class="image main"><img src="<?php the_post_thumbnail_url(); ?>" alt="" /></a>
<ul class="actions">
<li><a href="<?php the_permalink(); ?>" class="button big">Full Story</a></li>
</ul>
</article>
<?php endwhile; ?>
<!-- Posts -->
<section class="posts">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( $post->ID == $do_not_duplicate ) continue; ?>
<article>
<header>
<span class="date"><?php the_date('l, F j, Y'); ?></span>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</header>
<a href="<?php the_permalink(); ?>" class="image fit"><img src="<?php the_post_thumbnail_url(); ?>" alt="" /></a>
<p><?php the_excerpt();?></p>
<ul class="actions">
<li><a href="<?php the_permalink(); ?>" class="button">Full Story</a></li>
</ul>
</article>
<?php endwhile; ?>
<?php endif; ?>
</section>
<!-- Footer -->
<footer>
<?php posts_nav_link(); ?>
</footer>
</div>
<?php get_footer(); ?>