Exemple #1
0
/**
 * Determine basic columnar display.
 */
function thesis_columns()
{
    global $thesis_design;
    if ($thesis_design->layout['columns'] == 3 && $thesis_design->layout['order'] == 'invert') {
        thesis_wrap_columns();
    } else {
        thesis_content_column();
    }
    thesis_sidebars();
}
Exemple #2
0
/**
 * Determine basic columnar display.
 */
function thesis_columns()
{
    global $thesis_design;
    if ($thesis_design->layout['columns'] == 3 && $thesis_design->layout['order'] == 'invert' && apply_filters('thesis_show_sidebars', true)) {
        thesis_wrap_columns();
    } else {
        thesis_content_column();
    }
    if (apply_filters('thesis_show_sidebars', true)) {
        thesis_sidebars();
    }
}
Exemple #3
0
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";
}