'; dynamic_sidebar('left_sidebar'); echo '
'; echo '
'; echo get_template_part('loop_content'); echo '
'; break; case 'right_sidebar': echo '
'; echo get_template_part('loop_content'); echo '
'; echo '
'; dynamic_sidebar('right_sidebar'); echo '
'; break; case 'both_sidebar': echo '
'; dynamic_sidebar('left_sidebar'); echo '
'; echo '
'; echo get_template_part('loop_content'); echo '
'; echo '
'; dynamic_sidebar('right_sidebar'); echo '
'; break; case 'no_sidebar': echo '
'; echo get_template_part('loop_content'); echo '
'; break; } }?>