summaryrefslogtreecommitdiffhomepage
path: root/functions.php
diff options
context:
space:
mode:
author_Tradam <[email protected]>2025-09-11 20:17:59 +0900
committer_Tradam <[email protected]>2025-09-11 20:17:59 +0900
commit1743bc1b52f390e3942158fa7e911417bc869ee3 (patch)
tree5dc5858cffeade62f0b925d1928e14aa54751b16 /functions.php
downloadmalcz-wordpress-theme-1743bc1b52f390e3942158fa7e911417bc869ee3.tar.gz
malcz-wordpress-theme-1743bc1b52f390e3942158fa7e911417bc869ee3.zip
init
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/functions.php b/functions.php
new file mode 100644
index 0000000..d971ab2
--- /dev/null
+++ b/functions.php
@@ -0,0 +1,9 @@
+<?php
+
+function load_css() {
+ wp_register_style('picocss', get_template_directory_uri() . '/css/pico.css.min', array(), false, 'all' );
+ wp_enqueue_style('picocss');
+}
+add_action('wp_enqueue_scripts', 'load_css');
+
+