Can anybody help me with this? I'm having a heck of a time using widgets on a theme I got.
My website is here:
http://longrun.joelrunyon.com/
The problem I'm having is the theme is supposedly "already widgetized" and the code seems to be inserted already:
<div id="sidebar">
<?php if ( 1 || (!function_exists('dynamic_sidebar') || !dynamic_sidebar(1) )) : ?>
<div class="sidebar_box" id="sidebar_news">
<h2>Company News</h2>
<div class="sidebar_box_body">
- Lorem ipsum dolor sit amet, to the consectetuer to adipiscing elit. for Quisque sed felis. Aliquam Read More
- Lorem ipsum dolor sit amet, to the consectetuer to adipiscing elit. for Quisque sed felis. Aliquam Read More
- Lorem ipsum dolor sit amet, to the consectetuer to adipiscing elit. for Quisque sed felis. Aliquam Read More
</div><!-- /sidebar_box_body -->
</div><!-- /sidebar_box -->
<?php endif; ?>
<?php if ( 1 || (!function_exists('dynamic_sidebar') || !dynamic_sidebar(2) )) : ?>
<div class="sidebar_box" id="sidebar_articles">
<h2>Useful Articles</h2>
<div class="sidebar_box_body">
- Estate Planning Checklist
- How to Choose a Trustee Need Additional Income?
- Municipal Bonds May Be an Option
- Need a New Car? How to Cash In Your Clunker
<li class="last">Recently Widowed? How to Financially Survive the Death of a Loved One
</div><!-- /sidebar_box_body -->
</div><!-- /sidebar_box -->
<?php endif; ?>
</div>
The functions code is there too:
if ( function_exists('register_sidebar') ) {
register_sidebars(1, array(
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
I know how to usually widgetize a theme, but this is not working out at all...
any help?