File: /www/wwwroot/healthyton.com/wp-content/themes/bimber/includes/stack/original.php
<?php
/**
* Bimber Theme functions for the stack
*
* @license For the full license information, please view the Licensing folder
* that was distributed with this source code.
*
* @package Bimber_Theme 5.6
*/
// Prevent direct script access.
if ( ! defined( 'ABSPATH' ) ) {
die( 'No direct script access allowed' );
}
add_filter( 'bimber_get_google_font_families', 'bimber_stack_get_google_font_families' );
function bimber_stack_get_google_font_families( $r ) {
/*
* Translators: If there are characters in your language that are not supported
* by Roboto, translate this to 'off'. Do not translate into your own language.
*/
$roboto = _x( 'on', 'Roboto font: on or off', 'bimber' );
/*
* Translators: If there are characters in your language that are not supported
* by Poppins, translate this to 'off'. Do not translate into your own language.
*/
$poppins = _x( 'on', 'Poppins font: on or off', 'bimber' );
if ( 'off' !== $roboto ) {
$r['roboto'] = 'Roboto:400,300,500,600,700,900';
}
if ( 'off' !== $poppins ) {
$r['poppins'] = 'Poppins:400,300,500,600,700';
}
return $r;
}