mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
12 lines
311 B
PHP
12 lines
311 B
PHP
<?php
|
|
if ( function_exists('register_sidebar') )
|
|
register_sidebar(array(
|
|
'before_widget' => '<div class="ltop"></div>
|
|
<div class="lmid">',
|
|
'after_widget' => '</div>
|
|
<div class="lbot"></div>',
|
|
'before_title' => '
|
|
<h2>',
|
|
'after_title' => '</h2>',
|
|
));
|
|
?>
|