mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
f51247ef50
git-svn-id: http://svn.automattic.com/wordpress/trunk@13398 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
324 B
PHP
18 lines
324 B
PHP
<?php
|
|
/**
|
|
* @package WordPress
|
|
* @subpackage Classic_Theme
|
|
*/
|
|
|
|
add_theme_support( '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' => '',
|
|
));
|
|
|
|
?>
|