/** * The main template file. * * @package Betheme * @author Muffin group * @link https://muffingroup.com */ get_header(); // class $blog_classes = array(); $section_class = array(); $current_id = get_queried_object_id(); // class | layout if ($_GET && key_exists('mfn-b', $_GET)) { $blog_layout = esc_html($_GET['mfn-b']); // demo } else { $blog_layout = mfn_opts_get('blog-layout', 'classic'); } $blog_classes[] = $blog_layout; // layout | masonry tiles if ($blog_layout == 'masonry tiles') { $blog_layout = 'masonry'; } // class | columns if ($_GET && key_exists('mfn-bc', $_GET)) { $blog_classes[] = 'col-'. esc_html($_GET['mfn-bc']); // demo } else { $blog_classes[] = 'col-'. mfn_opts_get('blog-columns', 3); } // full width if ($_GET && key_exists('mfn-bfw', $_GET)) { $section_class[] = 'full-width'; // demo } if (mfn_opts_get('blog-full-width') && ($blog_layout == 'masonry')) { $section_class[] = 'full-width'; } $section_class = implode(' ', $section_class); // isotope if ($_GET && key_exists('mfn-iso', $_GET)) { $isotope = true; } elseif (mfn_opts_get('blog-isotope')) { $isotope = true; } else { $isotope = false; } if ($isotope || ($blog_layout == 'masonry')) { $blog_classes[] = 'isotope'; } // load more $load_more = mfn_opts_get('blog-load-more'); // translate $translate['filter'] = mfn_opts_get('translate') ? mfn_opts_get('translate-filter', 'Filter by') : __('Filter by', 'betheme'); $translate['tags'] = mfn_opts_get('translate') ? mfn_opts_get('translate-tags', 'Tags') : __('Tags', 'betheme'); $translate['authors'] = mfn_opts_get('translate') ? mfn_opts_get('translate-authors', 'Authors') : __('Authors', 'betheme'); $translate['all'] = mfn_opts_get('translate') ? mfn_opts_get('translate-all', 'Show all') : __('Show all', 'betheme'); $translate['categories'] = mfn_opts_get('translate') ? mfn_opts_get('translate-categories', 'Categories') : __('Categories', 'betheme'); $translate['item-all'] = mfn_opts_get('translate') ? mfn_opts_get('translate-item-all', 'All') : __('All', 'betheme'); ?>