Hi everybody,
I have the same problem and I want add a footer widget, as far as ? understand after I read the notes above;
I need to find out this part in my functions.php
if ( function_exists(‘register_sidebar’) )
register_sidebar(array(
‘name’=>’footer_left’,
‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h3>’,
‘after_title’ => ‘</h3>’,
));
then I need to copy and paste it to the footer.php
then I need to paste the code below too to the footer.php
<div class=”footWidget”>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘footer_left’) ) : ?>
<?php endif; ?>
</div>
then I need to paste the code below to the style.css
.footWidget {
float: left;
width: 340px;
}
Did I do the right things? Is this the right way?
Because I use Ahimsa Theme and these things didn’t work on my theme.
Can anybody help me?