Jake Vanderwerf
2026-01-05 9f86429a1252b45c95b7c62fbaa1b82de3723997
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
 
if (!defined('ABSPATH')) {
    exit;
}
 
/**
 * Outputs a css file as an inline style
 * @param string $filename
 *
 * @return void
 */
function jvbInlineStyles(string $filename):void
{
    echo '<style id="'.$filename.'">';
    include JVB_DIR . '/assets/css/'.$filename.'.min.css';
    echo '</style>';
}
 
/**
 * Shortcut to output the nav styles
 * @return void
 */
function jvbInlineNavStyles():void
{
    jvbInlineStyles('nav');
}