The register-sidebar tag has no wiki summary.
6
votes
2answers
2k views
List all sidebar names?
I'm listing all sidebars like that:
global $wp_registered_sidebars;
echo '<pre>';
print_r($wp_registered_sidebars);
echo '</pre>'
So I'm getting something like:
Array
(
...
1
vote
2answers
1k views
How to wrap the widget content with a div or get the widget title outside?
Is there a way to get the widget title outside of the widget area like this:
<ul>
<li>
<h2 class="widgettitle">The title here</h2>
<div class=""widget>
...