atticus-finch-child/functions.php

7 lines
188 B
PHP
Raw Normal View History

2016-01-28 19:00:39 +00:00
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
}