Remove the conditional dynamic_sidebar from the sidebar.php
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
but keep the sidebar stuff…
<?php endif; ?>
Then remove the register_sidebar code form the functions.php
<?php
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
?>
Then customize what you want directly in the sidebar.php
http://codex.ww.wp.xz.cn/Customizing_Your_Sidebar
Thread Starter
fuzzie
(@fuzzie)
Thanks, that helped a ton!
Got it working.