File "functions.php"

Full Path: /home/adniftyx/public_html/wp-content/themes/credio-child/functions.php
File size: 270 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

/*** Child Theme Function  ***/
function credio_theme_enqueue_scripts() {
	wp_register_style( 'childstyle', get_template_directory_uri() . '/style.css'  );
	wp_enqueue_style( 'childstyle' );
}
add_action('wp_enqueue_scripts', 'credio_theme_enqueue_scripts', 11);