Astra_BB_Ultimate_Addon::button_text_color()

Button Text Color


Description


Source

File: inc/compatibility/class-astra-bb-ultimate-addon.php

		public function button_text_color() {
			$theme_color = astra_get_option( 'theme-color' );
			$link_color  = astra_get_option( 'link-color', $theme_color );
			$color       = astra_get_option( 'button-color' );
			if ( empty( $color ) ) {
				$color = astra_get_foreground_color( $link_color );
			}
			return $color;
		}

User Contributed Notes

You must log in before being able to contribute a note or feedback.