deplorableword / redprint

A default WordPress template which is focused on speed and simplicity.

James Braithwaite (author)
Tue Jun 30 09:25:56 -0700 2009
redprint / functions.php
100644 17 lines (13 sloc) 0.495 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
 
/*-----------------------------------------------------------------------------
Widget Support
-----------------------------------------------------------------------------*/
if ( function_exists('register_sidebar') )
    register_sidebar();
 
/*-----------------------------------------------------------------------------
Display Post Template
-----------------------------------------------------------------------------*/
function getPost($post = NULL) {
include('post.php');
}
 
?>