Skip to content

Instantly share code, notes, and snippets.

@sbruner
Last active April 18, 2016 19:38
Show Gist options
  • Save sbruner/fa473ca8c50000509a753c707dad037c to your computer and use it in GitHub Desktop.
Save sbruner/fa473ca8c50000509a753c707dad037c to your computer and use it in GitHub Desktop.
<?php
add_filter('piklist_assets', 'my_assets');
function my_assets($assets)
{
array_push($assets['scripts'], array(
'handle' => 'my-javascript'
,'src' => 'http://mysite.com/js/my-javascript.js'
,'ver' => '1.0'
,'deps' => 'jquery'
,'enqueue' => true
,'in_footer' => true
,'admin' => true
,'front' => true
));
array_push($assets['styles'], array(
'handle' => 'my-admin-styles'
,'src' => 'http://mysite.com/styles/my-admin-styles.css'
,'ver' => '1.2'
,'enqueue' => true
,'in_footer' => true
,'admin' => true
,'media' => 'screen, projection'
));
return $assets;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment