name) ).''] = '#4fbbbd'; } /*********************** Footer Setting *****************************************/ $defaults['subscription_page'] = 0; $defaults['copyright_text'] = ''; $defaults['enable_footer_menu'] = true; $defaults['enable_back_to_top'] = true; // Pass through filter. $defaults = apply_filters( 'mag_lite_filter_default_theme_options', $defaults ); return $defaults; } endif; /** * Get theme options */ if ( ! function_exists( 'mag_lite_get_option' ) ) : /** * Get theme option * * @since 1.0.0 * * @param string $key Option key. * @return mixed Option value. */ function mag_lite_get_option( $key ) { $default_options = mag_lite_get_default_theme_options(); if ( empty( $key ) ) { return; } $theme_options = (array)get_theme_mod( 'theme_options' ); $theme_options = wp_parse_args( $theme_options, $default_options ); $value = null; if ( isset( $theme_options[ $key ] ) ) { $value = $theme_options[ $key ]; } return $value; } endif;