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;
}
Expand full source code Collapse full source code View on Trac