Skip to content

Instantly share code, notes, and snippets.

@vfontjr
Created April 29, 2020 18:38
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 vfontjr/a42c8f89c082b5067b5bb090142d4893 to your computer and use it in GitHub Desktop.
Save vfontjr/a42c8f89c082b5067b5bb090142d4893 to your computer and use it in GitHub Desktop.
<?php
function add_themescript()
{
if(!is_admin())
{ wp_enqueue_script('jquery');
wp_enqueue_script('thickbox',null,array('jquery'));
wp_enqueue_style('thickbox.css', '/'.WPINC.'/js/thickbox/thickbox.css', null, '1.0');
}
}
add_action('init','add_themescript');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment