Skip to content

Instantly share code, notes, and snippets.

@anthonysbrown
Created April 30, 2018 15:23
Show Gist options
  • Save anthonysbrown/2b923ba464d208195ecc5a10335bfcf8 to your computer and use it in GitHub Desktop.
Save anthonysbrown/2b923ba464d208195ecc5a10335bfcf8 to your computer and use it in GitHub Desktop.
adding to a css file
<?php
add_action('wp_enqueue_scripts', 'my_custom_css');
function my_custom_css(){
wp_enqueue_style( 'cdm-windows-gui-custom', get_stylesheet_directory_uri() . '/sp-client-document-manager/windows.css' ,array('cdm-windows-gui'));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment