forked from AndorChen/V2Press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-planes.php
33 lines (28 loc) · 1 KB
/
page-planes.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
<?php
/**
* Template Name: Planes
*
* This page template is only used for Planes page.
*
* @since 0.0.1
*/
get_header(); ?>
<div id="main">
<section id="nodes-count-box" class="box">
<div class="heading">
<p class="xsmall fade"><?php vp_breadcrumb(); ?></p>
</div>
<div class="inner">
<p class="xxlarge center"><?php printf( _n( '%d node now and growing.', '%d nodes now and growing.', 'v2press', wp_count_terms( 'category' ) ), wp_count_terms( 'category' ) ); ?></p>
</div>
</section>
<section id="all-nodes-box" class="box">
<div class="inner">
<ul class="nodes-list">
<?php wp_list_categories( array( 'orderby' => 'ID', 'use_desc_for_title' => 0, 'hierarchical' =>0, 'title_li' => '', 'hide_empty' => 0 ) ); ?>
</ul>
</div>
</section>
</div><!--END #main-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>