This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function total_child_enqueue_parent_theme_style() { | |
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); | |
} | |
add_action( 'wp_enqueue_scripts', 'total_child_enqueue_parent_theme_style' ); | |
function enqueue_our_required_stylesheets(){ | |
wp_enqueue_style('flaticon', get_stylesheet_directory_uri() . '/css/flaticon.css'); | |
} |