<?php /** * Single Blog Page * * @since 1.0 */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly $that = cloudfw(); $layout = $that->get_layout(); if ( ! $layout ) { $layout = cloudfw_get_option( 'blog_single', 'layout' ); } if ( empty( $layout ) ) { $layout = $that->blog_page_layout(); } if ( empty( $layout ) ) { $layout = 'index.php'; } $that->return_layout( $layout );