Skip to content

Instantly share code, notes, and snippets.

View ray1618's full-sized avatar

Raymond Bas ray1618

  • Netherlands
View GitHub Profile
<?php
add_action( 'wp_enqueue_scripts', 'mytheme_scripts' );
/**
* Enqueue Dashicons style for frontend use when enqueuing your theme's style sheet
*/
function mytheme_scripts() {
wp_enqueue_style( 'mytheme-style', get_stylesheet_uri(), ['dashicons'] );
}