diff --git a/.idea/php.xml b/.idea/php.xml index 70d68e9..2151bc0 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -18,7 +18,7 @@ - + @@ -26,8 +26,8 @@ - + diff --git a/.idea/watcherTasks.xml b/.idea/watcherTasks.xml new file mode 100644 index 0000000..c70980f --- /dev/null +++ b/.idea/watcherTasks.xml @@ -0,0 +1,25 @@ + + + + + + + + \ No newline at end of file diff --git a/assets/styles/style.css b/assets/styles/style.css new file mode 100644 index 0000000..329651d --- /dev/null +++ b/assets/styles/style.css @@ -0,0 +1,3 @@ + + +/*# sourceMappingURL=style.css.map */ diff --git a/assets/styles/style.css.map b/assets/styles/style.css.map new file mode 100644 index 0000000..4c9b008 --- /dev/null +++ b/assets/styles/style.css.map @@ -0,0 +1 @@ +{"version":3,"sourceRoot":"","sources":[],"names":[],"mappings":"","file":"style.css"} \ No newline at end of file diff --git a/assets/styles/style.scss b/assets/styles/style.scss new file mode 100644 index 0000000..e69de29 diff --git a/wp-plugin-base.php b/wp-plugin-base.php index a6833ff..1a24733 100644 --- a/wp-plugin-base.php +++ b/wp-plugin-base.php @@ -40,6 +40,7 @@ register_uninstall_hook(__FILE__, __NAMESPACE__ . '\on_uninstall'); function on_init(): void { + wp_register_style(__NAMESPACE__, plugins_url('assets/styles/style.css', __FILE__)); } add_action('init', __NAMESPACE__ . '\on_init');