The skin I am working on requires a few styling things inside the blockquote tag, as this theme will be free, I need to find a way for it to work without modding the core WordPress files.
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<div class="widget">',
'after_widget' => '</div>',
'before_title' => '<h2 class="sifr">
',
'after_title' => '</h2>',
));
?>
I saw that code on a forum, and was wondering if that by any chance could help me at all.
I would appriciate it if anyone could help!