Widgets Plugin, Pages and Links list problem
-
I have to problems with the new Widgets-Plugin, both concerning the list styles. My “Pages” and “Links” seem to have sort of another UL Tag around them. I had a look at the widgets.php file but couldn’t find anything that would help.
See the 2nd column: https://www.sosuechtig.de/
Since the theme is german, look at “Seiten” and “Freunde”.This is how my sidebars are implemented:
<div id="sidebar">
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>
<h2>Sidebar Plugin</h2>
Dieses Theme benutzt das Plugin <strong>Sidebar Widgets</strong>, bitte aktivieren
<?php endif; ?>
</div>My functions.php looks like this:
<?php
if ( function_exists('register_sidebars') )register_sidebars(2, array(
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
));
?>I didn’t remove the h2 tag here, because I use that one for the headlines ??
Maybe someone can help?
- The topic ‘Widgets Plugin, Pages and Links list problem’ is closed to new replies.