Skip to content

Instantly share code, notes, and snippets.

@bob12493
bob12493 / php
Created September 4, 2016 14:50
Add Icons to Icon Picker
<?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');
}