Reputation: 77
When a widget is output by WordPress typically it goes something like:
<widget_area_wrapper>
<title></title>
<content></content>
</widget_area_wrapper>
but how could I do it so that it shows up like this:
<widget_area_wrapper>
<content></content>
<title></title>
</widget_area_wrapper>
Thank you for your help in advance!
Upvotes: 0
Views: 50
Reputation: 36
There's a couple ways to go about this:
<p>
<!--your content here -->
</p>
<h3 id="titleIDhere" class="orTitleClassHere">
<!--your title here -->
</h3>
Upvotes: 1