esc_html__( 'Home/Front Page', 'amazing-blog' ),
'id' => 'sidebar-home',
'description' => '',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'amazing-blog' ),
'id' => 'sidebar-1',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Area Full Widgets', 'amazing-blog' ),
'id' => 'footer-full',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'amazing_blog_widgets_init' );
$amazing_blog_col_posts_init_path = amazing_blog_file_directory('inc/widgets/col-posts.php');
require $amazing_blog_col_posts_init_path;
$amazing_blog_author_init_path = amazing_blog_file_directory('inc/widgets/author.php');
require $amazing_blog_author_init_path;
$amazing_blog_social_links_init_path = amazing_blog_file_directory('inc/widgets/social-links.php');
require $amazing_blog_social_links_init_path;