import sample-wp-block-theme

This commit is contained in:
2024-05-08 14:26:54 +05:00
commit 696b821a5f
27 changed files with 431 additions and 0 deletions

10
functions.php Normal file
View File

@ -0,0 +1,10 @@
<?php
add_action('init', 'custom_stylesheet');
function custom_stylesheet() {
wp_register_style( 'custom-styles', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'custom-styles' );
}
add_action( 'wp_enqueue_scripts', 'custom_stylesheet' );