-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront-page.php
executable file
·67 lines (51 loc) · 1.44 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
<div class="row">
<div class="container">
</div>
</div> <!-- row -->
<div class="row sub_slide">
<div class="container">
<div class=""></div>
</div>
</div>
<?php /*
// the oft needed recent posts area code. Also, check functions.php for the limit excerpt function!
<div class="recent_posts">
<h3>STAY UP TO DATE ON ALL OF OUR RECENT NEWS</h3>
<?php
wp_reset_query();
$args = array(
'cat' => 4,
'posts_per_page' => 2
/*
'year' => $current_year,
'monthnum' => $current_month,
'order' => 'ASC'
);
query_posts( $args );
while ( have_posts() ) : the_post();
?>
<div class="home_single">
<div class="meta">POSTED ON <?php the_time('l, F jS, Y') ?></div>
<div class="recent_news"><?php the_title(); ?></div>
<div class="excerpt col-md-9">
<?php
$excerpt = get_the_excerpt();
echo string_limit_words($excerpt,8);
?>
</div>
<div class="col-md-3 read_more pull-right">
<a href="<?php the_permalink(); ?>">READ MORE</a>
</div>
<div class="clear clearfix"></div>
</div>
<?php
endwhile; wp_reset_query();
?>
<div class="clear clearfix"></div>
<div id="archive">
<a href="">CLICK HERE FOR OUR ARCHIVE</a>
</div>
</div>
*/ ?>
<?php get_template_part('templates/page', 'header'); ?>
<?php get_template_part('templates/content', 'page'); ?>