Astra_Footer_Button_Component_Loader::add_fonts()

Add Font Family Callback


Description


Return

(void)


Source

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

	public function add_fonts() {
		/**
		 * Footer - Button
		 */
		$num_of_footer_button = Astra_Builder_Helper::$num_of_footer_button;
		for ( $index = 1; $index <= $num_of_footer_button; $index++ ) {
			if ( ! Astra_Builder_Helper::is_component_loaded( 'button-' . $index, 'footer' ) ) {
				continue;
			}

			$_prefix = 'button' . $index;

			$btn_font_family = astra_get_option( 'footer-' . $_prefix . '-font-family' );
			$btn_font_weight = astra_get_option( 'footer-' . $_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.