Astra_Ext_Typography_Loader::__construct()
Constructor
Description
Source
File: addons/typography/classes/class-astra-ext-typography-loader.php
public function __construct() { add_action( 'init', array( $this, 'disale_qm_cap_checking' ) ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_action( 'customize_preview_init', array( $this, 'preview_scripts' ), 9 ); add_action( 'customize_register', array( $this, 'customize_register_new' ), 2 ); add_action( 'astra_get_fonts', array( $this, 'add_fonts' ), 1 ); add_filter( 'uabb_theme_button_font_family', array( $this, 'button_font_family' ), 11 ); add_filter( 'uabb_theme_button_font_size', array( $this, 'button_font_size' ), 11 ); add_filter( 'uabb_theme_button_text_transform', array( $this, 'button_text_transform' ), 11 ); }
Expand full source code Collapse full source code View on Trac