2016-01-28 19:00:39 +00:00
|
|
|
<?php
|
2017-05-27 15:57:30 +00:00
|
|
|
// Exit if accessed directly
|
|
|
|
if ( !defined( 'ABSPATH' ) ) exit;
|
2016-01-28 19:00:39 +00:00
|
|
|
|
2017-05-27 15:57:30 +00:00
|
|
|
/* Do NOT remove the below function or you child theme will not load properly */
|
2016-05-29 00:16:25 +00:00
|
|
|
|
2017-05-27 15:57:30 +00:00
|
|
|
if ( !function_exists( 'af_childtheme_parent_css' ) ):
|
|
|
|
function af_childtheme_parent_css() {
|
|
|
|
wp_enqueue_style( 'af_childtheme_parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( ) );
|
|
|
|
}
|
|
|
|
endif;
|
|
|
|
add_action( 'wp_enqueue_scripts', 'af_childtheme_parent_css', 10 );
|
2016-01-28 19:00:39 +00:00
|
|
|
|
2017-05-27 15:57:30 +00:00
|
|
|
/* Add your child theme's functions below */
|