-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.php
87 lines (50 loc) · 2.31 KB
/
home.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
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="span10 schtuff">
<div class="inner">
<?php
global $cap;
if ($cap->bool_ad) { ?>
<a href="<?php js_option('link_url'); ?>">
<img alt="Top Kits of 2011" src="<?php js_option('image_url'); ?>">
</a>
<?php } ?>
<?php get_template_part('slider'); ?>
<?php get_template_part('feat', 'cats'); ?>
<div class="recent">
<h2>Latest Reviews</h2>
<?php $query = new WP_Query( 'posts_per_page=5' );
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="entry-small">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('small-another', array('class' => 'alignleft')); ?></a>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<span class="make-me-smaller"><?php js_excerpt(100); ?></span></h3>
<p class="cats"><span class="the_category"><?php the_category(' '); ?>:</span> <em><?php the_tags(''); ?></em></p>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
<div class="recent">
<h2>Recent Articles</h2>
<?php
wp_reset_postdata();
$query = new WP_Query( array( 'post_type' => 'blog-post', 'posts_per_page' => 5 ) );
if ( $query->have_posts() ) : while ( $query ->have_posts() ) : $query->the_post(); ?>
<div class="entry-small">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('small-another', array('class' => 'alignleft')); ?></a>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<span class="make-me-smaller"><?php js_excerpt(100); ?></span></h3>
<p class="cats"><span class="the_category"><?php the_category(' '); ?>:</span> <em><?php the_tags(''); ?></em></p>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
</div><!--//Inner-->
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>