branch | wordpress |
changeset 109 | 03b0d1493584 |
child 132 | 4d4862461b8d |
-1:000000000000 | 109:03b0d1493584 |
---|---|
1 <?php |
|
2 /** |
|
3 * @package WordPress |
|
4 * @subpackage Classic_Theme |
|
5 */ |
|
6 |
|
7 automatic_feed_links(); |
|
8 |
|
9 if ( function_exists('register_sidebar') ) |
|
10 register_sidebar(array( |
|
11 'before_widget' => '<li id="%1$s" class="widget %2$s">', |
|
12 'after_widget' => '</li>', |
|
13 'before_title' => '', |
|
14 'after_title' => '', |
|
15 )); |
|
16 |
|
17 ?> |