astra_body_font_family()
Function to get Body Font Family
Description
Return
(string)
Source
File: inc/extras.php
function astra_body_font_family() { $font_family = astra_get_option( 'body-font-family' ); // Body Font Family. if ( 'inherit' == $font_family ) { $font_family = '-apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif'; } return apply_filters( 'astra_body_font_family', $font_family ); }
Expand full source code Collapse full source code View on Trac
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |