print_styles( 'buddyx-content' );
buddyx()->print_styles( 'buddyx-sidebar', 'buddyx-widgets' );
$default_sidebar = get_theme_mod( 'sidebar_option', buddyx_defaults( 'sidebar-option' ) );
$post_layout = get_theme_mod( 'blog_layout_option', buddyx_defaults( 'blog-layout-option' ) );
?>
$post_layout,
'body_class' => $classes,
);
get_template_part( 'template-parts/layout/entry', $post_layout, $args );
} else {
while ( have_posts() ) {
the_post();
get_template_part( 'template-parts/content/entry', get_post_type() );
}
}
if ( ! is_singular() ) {
get_template_part( 'template-parts/content/pagination' );
}
} else {
get_template_part( 'template-parts/content/error' );
}
?>