Files
wp-theme-base/$REPO_NAME.php
2025-07-21 18:16:46 -04:00

14 lines
286 B
PHP

<?php
namespace $REPO_NAME_PASCAL;
function load_css()
{
// This will also enqueue the parent CSS if this is a child theme
wp_enqueue_style(
__NAMESPACE__ . '-style',
get_stylesheet_uri()
);
}
add_action('wp_enqueue_scripts', __NAMESPACE__ . '\load_css');