Skip to content

Instantly share code, notes, and snippets.

@jtallant
Created February 19, 2013 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtallant/4989298 to your computer and use it in GitHub Desktop.
Save jtallant/4989298 to your computer and use it in GitHub Desktop.
Enable less.watch on WordPress site during development
<?php
add_action('wp_footer', 'less_dev_mode', 9999);
function less_dev_mode() {
?>
<script type="text/javascript">
less.env = "development";
less.watch();
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment