init: Initial commit

Signed-off-by: prettysunflower <me@prettysunflower.moe>
This commit is contained in:
2025-07-21 18:16:46 -04:00
parent 36ad73e869
commit ac5fe0d095
14 changed files with 129 additions and 51 deletions

14
$REPO_NAME.php Normal file
View File

@@ -0,0 +1,14 @@
<?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');