Astra_BB_Ultimate_Addon::button_font_family()

Button Font Family


Description


Source

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

		public function button_font_family() {
			$font_family = str_replace( "'", '', astra_get_option( 'font-family-button' ) );
			$font_family = explode( ',', $font_family );
			return array(
				'family' => $font_family[0],
				'weight' => astra_get_option( 'font-weight-button' ),
			);
		}


User Contributed Notes

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