init: Initial commit
Signed-off-by: prettysunflower <me@prettysunflower.moe>
This commit is contained in:
14
$REPO_NAME.php
Normal file
14
$REPO_NAME.php
Normal 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');
|
Reference in New Issue
Block a user