Skip to content

Instantly share code, notes, and snippets.

@wp-freund
Created July 31, 2015 21:33
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 wp-freund/aa194ea387559ea928eb to your computer and use it in GitHub Desktop.
Save wp-freund/aa194ea387559ea928eb to your computer and use it in GitHub Desktop.
livereload.js in wordpress
if (in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'))) {
wp_register_script('livereload', 'http://localhost:35729/livereload.js?snipver=1', null, false, true);
wp_enqueue_script('livereload');
}
/*from http://robandlauren.com/2014/02/05/live-reload-grunt-wordpress/ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment