-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid_template.php
42 lines (37 loc) · 969 Bytes
/
grid_template.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
<?php
/*
Template Name: post grid
*
* @package WordPress
* @subpackage elevel.tv
* @since 3.0.0
*/
?>
<?php get_header(); ?>
<div id="container">
<div class="container">
<div id="content">
<?php /* This calls the subnav */ ?>
<?php wp_nav_menu(
array(
'menu' => 'Secondary Navigation',
'container' => 'div',
'container_class' => 'row subnav'
)
); ?>
<?php get_search_form(); ?>
<?php
/* Run the loop to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-index.php and that will be used instead.
*/
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('cat=0&posts_per_page=20&paged='.$paged); //set your own query here
get_template_part( 'loop', 'grid' );
wp_reset_query();
?>
</div><!-- #content -->
</div><!-- #container -->
</div>
<!--?php get_sidebar(); ?-->
<?php get_footer(); ?>