It looks like nothing was found at this location. Maybe try one of the links below or a search?
d sidebar class in body * * @since 1.0.0 * */ if (!function_exists('falcha_news_custom_body_class')) : function falcha_news_custom_body_class($classes) { global $falcha_news_theme_options; $falcha_news_sidebar = ''; if (!empty($falcha_news_theme_options['falcha-news-sidebar-archive-page'])) { $falcha_news_sidebar = $falcha_news_theme_options['falcha-news-sidebar-archive-page']; } if (is_singular()) { if (!empty($falcha_news_theme_options['falcha-news-sidebar-blog-page'])) { $falcha_news_sidebar = $falcha_news_theme_options['falcha-news-sidebar-blog-page']; } global $post; $single_sidebar = get_post_meta($post->ID, 'falcha_news_sidebar_layout', true); if (('default-sidebar' != $single_sidebar) && (!empty($single_sidebar))) { $falcha_news_sidebar = $single_sidebar; } } if (is_front_page() && !empty($falcha_news_theme_options['falcha-news-sidebar-front-page'])) { $falcha_news_sidebar = $falcha_news_theme_options['falcha-news-sidebar-front-page']; } $body_background = esc_attr(get_background_color()); if ($body_background != 'fff' && $body_background != 'ffffff') { $classes[] = 'ct-bg'; } if (!empty($falcha_news_theme_options['falcha-news-site-layout-options']) && $falcha_news_theme_options['falcha-news-site-layout-options'] == 'boxed') { $classes[] = 'ct-boxed'; } else { $classes[] = 'ct-full-layout'; } if (!empty($falcha_news_theme_options['falcha-news-enable-sticky-sidebar']) && $falcha_news_theme_options['falcha-news-enable-sticky-sidebar'] == 1) { $classes[] = 'ct-sticky-sidebar'; } if ($falcha_news_sidebar == 'no-sidebar') { $classes[] = 'no-sidebar'; } elseif ($falcha_news_sidebar == 'left-sidebar') { $classes[] = 'left-sidebar'; } elseif ($falcha_news_sidebar == 'middle-column') { $classes[] = 'middle-column'; } else { $classes[] = 'right-sidebar'; } return $classes; } endif; add_filter('body_class', 'falcha_news_custom_body_class'); /** * Remove ... From Excerpt * * @since 1.0.0 * */ if (!function_exists('falcha_news_excerpt_more')) : function falcha_news_excerpt_more($more) { if (!is_admin()) { return ''; } } endif; add_filter('excerpt_more', 'falcha_news_excerpt_more'); /** * Post Formats * * @since Falcha News 1.0.0 */ if (!function_exists('falcha_news_post_formats')) : function falcha_news_post_formats($post_id) { global $falcha_news_theme_options; if (!empty($falcha_news_theme_options['falcha-news-extra-post-formats-icons']) && $falcha_news_theme_options['falcha-news-extra-post-formats-icons'] != 1) : $hide_post_format_icon = $falcha_news_theme_options['falcha-news-extra-post-formats-icons']; $post_formats = get_post_format($post_id); switch ($post_formats) { case "image": $post_formats = "
It looks like nothing was found at this location. Maybe try one of the links below or a search?