mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
9 lines
275 B
PHP
9 lines
275 B
PHP
|
<?php
|
||
|
if ( function_exists('register_sidebar') )
|
||
|
register_sidebar(array(
|
||
|
'before_bar' => '<li id="%1$s" class="bar %2$s">',
|
||
|
'after_bar' => '</li>',
|
||
|
'before_title' => '<h2 class="sidebartitle">',
|
||
|
'after_title' => '</h2>',
|
||
|
));
|
||
|
?>
|