sample-wp-block-theme/functions.php

11 lines
269 B
PHP
Raw Normal View History

2024-01-11 06:48:33 +00:00
<?php
add_action('init', 'custom_stylesheet');
function custom_stylesheet() {
wp_register_style( 'custom-styles', get_template_directory_uri() . '/style.css' );
2024-01-12 08:03:34 +00:00
wp_enqueue_style( 'custom-styles' );
2024-01-11 06:48:33 +00:00
}
2024-01-12 08:03:34 +00:00
add_action( 'wp_enqueue_scripts', 'custom_stylesheet' );