Skip to content

Instantly share code, notes, and snippets.

@anthonysbrown
Created April 30, 2018 15:24
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 anthonysbrown/d531653f9f918390a2cb7f4ef268cc9c to your computer and use it in GitHub Desktop.
Save anthonysbrown/d531653f9f918390a2cb7f4ef268cc9c to your computer and use it in GitHub Desktop.
Add a custom cdm css file
<?php
function cdm_custom_styles() {
wp_enqueue_style( 'my-cdm-custom-styles', get_stylesheet_directory_uri().'cdm.css', array('cdm-style','cdm-premium-style') );
}
add_action( 'wp_enqueue_scripts', 'cdm_custom_styles' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment