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