1. Load position: position may be header, footer, main view
<?php
if (is_active_sidebar('logobox')){
dynamic_sidebar('logobox');
}
?>
2. Init functions.php
/*TopBox*/
function CustomLogoBox()
{
register_sidebar(array(
'id' => 'logobox',
'name' => 'Logo Box',
'description' => 'Logo box text',
'before_widget' => '<div class="logobox">',
'after_widget' => '</div>',
'before_title' => '<h3 class="logo-widget-title">',
'after_title' => '</h3>'
));
}
add_action( 'widgets_init', 'CustomLogoBox' );
3. Wordpress admin add widget
0 nhận xét:
Đăng nhận xét