コード例 #1
0
ファイル: content_box.php プロジェクト: JGrubb/Almond-Tree
/**
 * 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();
}
コード例 #2
0
ファイル: content_box.php プロジェクト: CherylMuniz/fashion
/**
 * 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();
    }
}