« Back to History
class-astra-header-menu-component-loader.php
|
20260723_000646.php
Initial Domain Snapshot
Copy Code
<?php /** * Menu Styling Loader for Astra theme. * * @package astra-builder * @link https://wpastra.com/ * @since 3.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Customizer Initialization * * @since 3.0.0 */ class Astra_Header_Menu_Component_Loader { /** * Constructor * * @since 3.0.0 */ public function __construct() { // Load Google fonts. add_action( 'astra_get_fonts', array( $this, 'add_fonts' ), 1 ); } /** * Enqueue google fonts. * * @since 3.0.0 */ public function add_fonts() { $component_limit = defined( 'ASTRA_EXT_VER' ) ? Astra_Builder_Helper::$component_limit : Astra_Builder_Helper::$num_of_header_menu; for ( $index = 1; $index <= $component_limit; $index++ ) { $_prefix = 'menu' . $index; $menu_font_family = astra_get_option( 'header-' . $_prefix . '-font-family' ); $menu_font_weight = astra_get_option( 'header-' . $_prefix . '-font-weight' ); Astra_Fonts::add_font( $menu_font_family, $menu_font_weight ); } $mobile_menu_font_family = astra_get_option( 'header-mobile-menu-font-family' ); $mobile_menu_font_weight = astra_get_option( 'header-mobile-menu-font-weight' ); Astra_Fonts::add_font( $mobile_menu_font_family, $mobile_menu_font_weight ); } } /** * Kicking this off by creating the object of the class. */ new Astra_Header_Menu_Component_Loader();