logo
Ask your WordPress questions! Pay money and get answers fast! (more info)

This is an old version of this answer!

Return to the current answer
You need to register and create a sidebar in the place you need the widget

Register in functions.php

register_sidebar(array(
'name' => 'HeaderSideBar',
'id' => 'header-sidebar',
'description' => 'Widgets in this area will be shown on the header.',
'before_title' => '<h1>',
'after_title' => '</h1>'
));


Add the place in header.php
dynamic_sidebar('sidebar_header')


Then assign the widget to the sidebar

Luis Abarca | 01/21/12 at 10:42pm

This is an old version of this answer!

Return to the current answer