Skip to content

Instantly share code, notes, and snippets.

View beobeosan's full-sized avatar
:shipit:
Focusing

BeoBeosan beobeosan

:shipit:
Focusing
View GitHub Profile
<?php
function theme_styles() {
wp_enqueue_style(
'tailwind',
get_template_directory_uri() . '/assets/css/output.css',
[],
filemtime(get_template_directory() . '/assets/css/output.css')
);
wp_enqueue_style('maincss',get_theme_file_uri('./css/index.css' ));
wp_enqueue_script('mainjs',get_theme_file_uri('./js/main.js' ),[],null ,'1.0' , true );