Enqueue the frozen stylesheet in functions.php.
Setup#
<?php
function enqueue_nakshora() {
wp_enqueue_style(
'nakshora',
'https://cdn.jsdelivr.net/gh/nakshora/nakshora@main/minified-version/v1.0.0.css',
[],
'1.0.0'
);
}
add_action('wp_enqueue_scripts', 'enqueue_nakshora');Notes#
- Version the handle ("1.0.0") so cache busting is explicit
- Child themes can dequeue and replace with a customized copy
Note. The v1 file is immutable — cache it aggressively (immutable + max-age=31536000).
