esc_html__( 'Right Sidebar', 'book-landing-page' ), 'id' => 'right-sidebar', 'description' => esc_html__( 'Add widgets here.', 'book-landing-page' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); if( book_landing_page_is_newsletter_activated() ){ register_sidebar( array( 'name' => esc_html__( 'Subscription Widget', 'book-landing-page' ), 'id' => 'bottom-widget', 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } } add_action( 'widgets_init', 'book_landing_page_widgets_init' ); /** * Load widget featured post. */ require get_template_directory() . '/inc/widgets/widget-featured-post.php'; /** * Load widget featured post. */ require get_template_directory() . '/inc/widgets/widget-popular-post.php'; /** * Load widget recent post. */ require get_template_directory() . '/inc/widgets/widget-recent-post.php'; /** * Load widget social link. */ require get_template_directory() . '/inc/widgets/widget-social-links.php';