Current File : /pages/54/47/d0016649/home/htdocs/cd24/wp-content/themes/dreier/single-post.php
<?php
/**
 *	Single Blog Page
 *
 *	@since 1.0
 */
$that   = cloudfw();
$sidebar = cloudfw_get_option( 'blog_single', 'sidebar' );
$titlebar_style = cloudfw_get_option( 'blog_single', 'titlebar_style' );

if ( ! $layout = $that->get_layout() ) {
	$layout = cloudfw_get_option( 'blog_single', 'layout' );
}

if ( !empty($sidebar) ) {
	$that->set('custom_sidebar', $sidebar);
}

if ( !empty($titlebar_style) ) {
	$that->set('default_titlebar_style', $titlebar_style);
}

if ( empty($layout) ) {
	$layout = $that->blog_page_layout();
}

if ( empty($layout) ) {
	$layout = 'index.php';
}

$that->return_layout( $layout );