mfwpt/functions.php

10 lines
194 B
PHP
Raw Normal View History

<?php
// function file for mfwpt
function mytheme_enqueue_style() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'mytheme_enqueue_style' );
?>