Uname:
Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software:
Apache
PHP version:
8.0.30 [ PHP INFO ] PHP os:
Linux
Server Ip:
145.239.37.162
Your Ip:
216.73.216.190
User:
dreampi (1009562) | Group:
users (100)
Safe Mode:
OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl
<?php
// Add plugin-specific colors and fonts to the custom CSS
if ( ! function_exists( 'spin_gutenberg_get_css' ) ) {
add_filter( 'spin_filter_get_css', 'spin_gutenberg_get_css', 10, 2 );
function spin_gutenberg_get_css( $css, $args ) {
if ( isset( $css['fonts'] ) && isset( $args['fonts'] ) ) {
$fonts = $args['fonts'];
$fonts['p_font-family!'] = str_replace(';', ' !important;', $fonts['p_font-family']);
$fonts['p_font-size!'] = str_replace(';', ' !important;', $fonts['p_font-size']);
$css['fonts'] .= <<<CSS
body.edit-post-visual-editor {
{$fonts['p_font-family!']}
{$fonts['p_font-size']}
{$fonts['p_font-weight']}
{$fonts['p_font-style']}
{$fonts['p_line-height']}
{$fonts['p_text-decoration']}
{$fonts['p_text-transform']}
{$fonts['p_letter-spacing']}
}
.editor-post-title__block .editor-post-title__input {
{$fonts['h1_font-family']}
{$fonts['h1_font-size']}
{$fonts['h1_font-weight']}
{$fonts['h1_font-style']}
}
.block-editor-block-list__block {
{$fonts['p_margin-top']}
{$fonts['p_margin-bottom']}
}
CSS;
}
return $css;
}
}