web/wp-content/themes/classic/functions.php
branchwordpress
changeset 109 03b0d1493584
child 132 4d4862461b8d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/classic/functions.php	Wed Dec 23 17:55:33 2009 +0000
@@ -0,0 +1,17 @@
+<?php
+/**
+ * @package WordPress
+ * @subpackage Classic_Theme
+ */
+
+automatic_feed_links();
+
+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' => '',
+	));
+
+?>