/** * Display first sidebar and content column for three-column layouts. */ function thesis_wrap_columns() { echo "\t\t<div id=\"column_wrap\">\n"; thesis_content_column(); thesis_get_sidebar(); echo "\t\t</div>\n"; }
/** * Display first sidebar and content column for three-column layouts. */ function thesis_wrap_columns() { echo ' <div id="column_wrap">' . "\n"; thesis_content_column(); thesis_get_sidebar(); echo ' </div>' . "\n"; }
function thesis_build_sidebars() { global $thesis_design; if (thesis_show_multimedia_box()) { thesis_multimedia_box(); } if ($thesis_design['layout']['columns'] == 3 && $thesis_design['layout']['order'] == 'invert') { thesis_get_sidebar(2); } elseif ($thesis_design['layout']['columns'] == 3 || $thesis_design['layout']['columns'] == 1 || $_GET['template']) { thesis_get_sidebar(); thesis_get_sidebar(2); } else { thesis_get_sidebar(); } }
function thesis_faux_admin_content_area() { global $thesis_design; echo ' <div id="content_box">' . "\n"; if ($thesis_design['layout']['columns'] == 3 && $thesis_design['layout']['order'] == 'invert') { echo ' <div id="column_wrap">' . "\n"; thesis_hook_faux_admin(); thesis_get_sidebar(); echo ' </div>' . "\n"; } else { thesis_hook_faux_admin(); } thesis_sidebars(); echo ' </div>' . "\n"; }