From ceb38499b2ba0acedb1a0d74cc7e787c69b44a26 Mon Sep 17 00:00:00 2001 From: Matt Marcha Date: Mon, 24 Aug 2020 14:04:08 +0200 Subject: [PATCH] correctif mineur pour affichage dashicons en front --- functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/functions.php b/functions.php index 64f92c2..2884c3d 100644 --- a/functions.php +++ b/functions.php @@ -18,6 +18,7 @@ add_action('wp_enqueue_scripts', 'enqueue_scripts_child', 20); function enqueue_scripts_child() { wp_register_script('customJS', get_stylesheet_directory_uri() . '/custom.js', array('jquery'),'1.1', true); wp_enqueue_script('customJS'); + wp_enqueue_style('dashicons'); //wp_enqueue_style( 'responsive-child', get_stylesheet_directory_uri() . '/path/to/file.css' ); }