HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/karjerosdiena.lt/wp-content/plugins/careerfy-framework/includes/custom-typography.php
<?php

add_action('wp_head', 'careerfy_custom_typo_style', 98);
function careerfy_custom_typo_style() {
    global $careerfy_theme_options;
    $fancy_title_typo = isset($careerfy_theme_options['fancy-title-typo']) ? $careerfy_theme_options['fancy-title-typo'] : '';

    ?>
    <style>
    <?php
    if (isset($fancy_title_typo['color']) && $fancy_title_typo['color'] != '') { ?>
            .careerfy-fancy-title .after-border:before {
                background-color: <?php echo ($fancy_title_typo['color']) ?>;
            }
        <?php
    }
    ?>
    </style>
    <?php
}