remove_control('blogus_content_layout'); } function blognft_theme_setup() { //Load text domain for translation-ready load_theme_textdomain('blognft', get_stylesheet_directory() . '/languages'); require( get_stylesheet_directory() . '/hooks/hook-front-page-main-banner-section.php' ); require( get_stylesheet_directory() . '/customizer-default.php' ); require( get_stylesheet_directory() . '/frontpage-options.php' ); } add_action( 'after_setup_theme', 'blognft_theme_setup' ); if (!function_exists('blognft_get_block')) : /** * * * @since Blognft 1.0.0 * */ function blognft_get_block($block = 'grid', $section = 'post') { get_template_part('hooks/blocks/block-' . $section, $block); } endif; /** * Check if given term has child terms * */ function blognft_list_popular_taxonomies($taxonomy = 'post_tag', $title = "Top Tags", $number = 7) { $show_popular_tags_section = esc_attr(get_theme_mod('show_popular_tags_section','true')); $show_popular_tags_title = get_theme_mod('show_popular_tags_title', esc_html('Top Tags')); if($show_popular_tags_section == true){ $popular_taxonomies = get_tags(array( 'orderby' => 'count', 'order' => 'DESC', 'number' => 7, )); $html = ''; if (isset($popular_taxonomies) && !empty($popular_taxonomies)): $html .= '
'; if (!empty($show_popular_tags_title)): $html .= ''; $html .= esc_html($show_popular_tags_title); $html .= ''; endif; $html .= ''; $html .= '
'; endif; echo $html; } } /*select page for trending news*/ if (!function_exists('blognft_popular_tags_section_status')) : /** * Check if slider section page/post is active. * * @since 1.0.0 * * @param WP_Customize_Control $control WP_Customize_Control instance. * * @return bool Whether the control is active to the current preview. */ function blognft_popular_tags_section_status($control) { if (true == $control->manager->get_setting('show_popular_tags_section')->value()) { return true; } else { return false; } } endif;