custom_fonts = json_decode( get_theme_mod( 'custom_fonts', '[]' ), true ); $this->google_fonts = botiga_get_google_fonts(); } /** * Export our List of Google Fonts to JavaScript */ public function to_json() { parent::to_json(); $this->json['google_fonts'] = $this->google_fonts; } /** * Customize print styles */ public function enqueue() { add_action( 'customize_controls_print_styles', array( $this, 'print_styles' ) ); } /** * Embed the custom fonts */ public function print_styles() { echo ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Render the control in the customizer */ public function render_content() { $google_font_weights = array(); ?>