Created
April 30, 2018 15:24
-
-
Save anthonysbrown/d531653f9f918390a2cb7f4ef268cc9c to your computer and use it in GitHub Desktop.
Add a custom cdm css file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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