Skip to content

Instantly share code, notes, and snippets.

View jnthnclrk's full-sized avatar

Jonathan Clarke jnthnclrk

View GitHub Profile
@jnthnclrk
jnthnclrk / functions.php
Last active December 20, 2015 15:49
En-queue scripts & styles for Bootstrap and Less.js in WordPress
<?php
/**
* Enqueue scripts and stylesheets
*/
function enqueue_less_styles($tag, $handle) {
global $wp_styles;
$match_pattern = '/\.less$/U';
if ( preg_match( $match_pattern, $wp_styles->registered[$handle]->src ) ) {
$handle = $wp_styles->registered[$handle]->handle;