File: /www/wwwroot/healthyton.com/wp-content/themes/bimber/includes/stack/video.php
<?php
/**
* Bimber Theme functions for the Video stack
*
* @license For the full license information, please view the Licensing folder
* that was distributed with this source code.
*
* @package Bimber_Theme 6.5
*/
// 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' );
if ( 'off' !== $roboto ) {
$r['roboto'] = 'Roboto:400,500,700';
}
return $r;
}
add_filter( 'bimber_get_grid_size', 'bimber_stack_get_grid_size' );
function bimber_stack_get_grid_size( $r ) {
$r['width'] = 1132;
$r['gutter_width'] = 12;
return $r;
}