1 × 900,000 ₫
if ( !function_exists('cherry_get_layout_class') ) { function cherry_get_layout_class($layout) { switch ($layout) { case 'full_width_content': $layout_class = function_exists('apply_filters') ? apply_filters( "cherry_layout_wrapper", "col-xs-12" ) : "col-xs-12"; break; case 'content': $layout_class = function_exists('apply_filters') ? apply_filters( "cherry_layout_content_column", "col-xs-12 col-md-8" ) : "col-xs-12 col-md-8"; if (function_exists('of_get_option')) { $layout_class .= ' '.of_get_option('blog_sidebar_pos'); } break; case 'sidebar': $layout_class = function_exists('apply_filters') ? apply_filters( "cherry_layout_sidebar_column", "col-xs-12 col-md-4" ) : "col-xs-12 col-md-4"; break; case 'left_block': $layout_class = function_exists('apply_filters') ? apply_filters( "cherry_layout_left_block_column", "col-xs-12 col-md-7" ) : "col-xs-12 col-md-7"; break; case 'right_block': $layout_class = function_exists('apply_filters') ? apply_filters( "cherry_layout_right_block_column", "col-xs-12 col-md-5" ) : "col-xs-12 col-md-5"; break; default: $layout_class = 'col-xs-12'; } return $layout_class; } } if ( !function_exists('inherit_template') ) { function inherit_template() { if (function_exists('is_category') && is_category()) { $catid = get_query_var('cat'); if (defined('STYLESHEETPATH') && file_exists(STYLESHEETPATH . '/category-' . $catid . '.php')) { include(STYLESHEETPATH . '/category-' . $catid . '.php'); exit; } } } }