Wednesday 1 April 2015

How to add custom sidebar in wordpress

How to add custom sidebar in wordpress


Hello

Here Example of add custom sidebar in wordpress

please check it below code.

here example to add custom sidebar.

function theme_slug_widgets_init() {

register_sidebar( array(
        'name' => __( 'Header Sidebar', 'theme-slug' ),
        'id' => 'home-header-1',
        'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
        'before_title' => '

',

        'after_title' => '
',
    ) );

}
add_action( 'widgets_init', 'theme_slug_widgets_init' );

here to add custom sidebar in wordpress
name : you can add your sidebar name
id : it can use to uniq and call siderbar in wordpress
description: it can be what can be added in siderbar 
and what to add for this just description for end user
knowledge where to add this sidebar
before_title and after title: here name display h1 tag in you can change in tag. or html of before title and after title.

if you want to add this siderbar check below code

if ( is_active_sidebar( 'home-header-1' ) ) : 
 dynamic_sidebar( 'home-header-1' )
endif

here dynamic_sidebar add siderbar id if sidebar is active then
it will call

No comments:

Post a Comment

Thank You For Comment