public
Description: Wordpress template based on the default template but modified for use as a starting point for theme designers.
Homepage: http://www.poweredbygeek.com/
Clone URL: git://github.com/lwallenstein/designers-default.git
designers-default / functions.php
100755 15 lines (13 sloc) 0.281 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
* @package WordPress
* @subpackage Designers_Default
*/
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '',
'after_title' => '',
));
 
?>