Astra_Header_Button_Component_Loader::add_fonts()

Add Font Family Callback


Description


Return

(void)


Source

File: inc/builder/type/header/button/class-astra-header-button-component-loader.php

	public function add_fonts() {
		/**
		 * Header - Button
		 */
		$num_of_header_button = Astra_Builder_Helper::$num_of_header_button;
		for ( $index = 1; $index <= $num_of_header_button; $index++ ) {

			if ( ! Astra_Builder_Helper::is_component_loaded( 'button-' . $index, 'header' ) ) {
				continue;
			}

			$_prefix = 'button' . $index;

			$btn_font_family = astra_get_option( 'header-' . $_prefix . '-font-family' );
			$btn_font_weight = astra_get_option( 'header-' . $_prefix . '-font-weight' );
			Astra_Fonts::add_font( $btn_font_family, $btn_font_weight );
		}
	}


User Contributed Notes

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