<?php


if ( ! function_exists( 'belly_is_featured_news_section_active' ) ) :


	function belly_is_featured_news_section_active( $control ) {

		if ( $control->manager->get_setting( 'theme_options[featured_news_status]' )->value() ) {
			return true;
		} else {
			return false;
		}

	}

endif;

if ( ! function_exists( 'belly_is_breaking_news_active' ) ) :


	function belly_is_breaking_news_active( $control ) {

		if ( $control->manager->get_setting( 'theme_options[show_breaking_news]' )->value() ) {
			return true;
		} else {
			return false;
		}

	}

endif;
