*/ function blogwp_widgets_init() { register_sidebar(array( 'id' => 'blogwp-header-banner', 'name' => esc_html__( 'Header Banner', 'blogwp' ), 'description' => esc_html__( 'This sidebar is located on the header of the web page.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-sidebar-one', 'name' => esc_html__( 'Sidebar 1', 'blogwp' ), 'description' => esc_html__( 'This sidebar is normally located on the left-hand side of web page.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-home-fullwidth-widgets', 'name' => esc_html__( 'Top Full Width Widgets (Home Page Only)', 'blogwp' ), 'description' => esc_html__( 'This full-width widget area is located at the top of homepage.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-fullwidth-widgets', 'name' => esc_html__( 'Top Full Width Widgets (Every Page)', 'blogwp' ), 'description' => esc_html__( 'This full-width widget area is located at the top of every page.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-home-top-widgets', 'name' => esc_html__( 'Top Widgets (Home Page Only)', 'blogwp' ), 'description' => esc_html__( 'This widget area is located at the top of homepage.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-top-widgets', 'name' => esc_html__( 'Top Widgets (Every Page)', 'blogwp' ), 'description' => esc_html__( 'This widget area is located at the top of every page.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-home-bottom-widgets', 'name' => esc_html__( 'Bottom Widgets (Home Page Only)', 'blogwp' ), 'description' => esc_html__( 'This widget area is located at the bottom of homepage.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-bottom-widgets', 'name' => esc_html__( 'Bottom Widgets (Every Page)', 'blogwp' ), 'description' => esc_html__( 'This widget area is located at the bottom of every page.', 'blogwp' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-footer-1', 'name' => esc_html__( 'Footer 1', 'blogwp' ), 'description' => esc_html__( 'This sidebar is located on the left bottom of web page.', 'blogwp' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-footer-2', 'name' => esc_html__( 'Footer 2', 'blogwp' ), 'description' => esc_html__( 'This sidebar is located on the middle bottom of web page.', 'blogwp' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

')); register_sidebar(array( 'id' => 'blogwp-footer-3', 'name' => esc_html__( 'Footer 3', 'blogwp' ), 'description' => esc_html__( 'This sidebar is located on the middle bottom of web page.', 'blogwp' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

')); } add_action( 'widgets_init', 'blogwp_widgets_init' ); function blogwp_top_wide_widgets() { ?>