Astra_Ext_Blog_Pro_Markup::add_fonts()
Enqueue google fonts.
Description
Return
(void)
Source
File: addons/blog-pro/classes/class-astra-ext-blog-pro-markup.php
public function add_fonts() { // Single post social sharing - Label font. $label_font_family = astra_get_option( 'single-post-social-sharing-icon-label-font-family' ); $label_font_weight = astra_get_option( 'single-post-social-sharing-icon-label-font-weight' ); Astra_Fonts::add_font( $label_font_family, $label_font_weight ); // Single post social sharing - Label font. $heading_font_family = astra_get_option( 'single-post-social-sharing-heading-font-family' ); $heading_font_weight = astra_get_option( 'single-post-social-sharing-heading-font-weight' ); Astra_Fonts::add_font( $heading_font_family, $heading_font_weight ); }
Expand full source code Collapse full source code View on Trac