Last active
February 1, 2021 12:55
-
-
Save davidtowoju/5ba589170f8add8854f04d37244742f8 to your computer and use it in GitHub Desktop.
Add scripts to MemberPress Courses Classroom Theme
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 enqueue_my_styles(){ | |
wp_enqueue_style('my_styles', plugin_dir_url(__FILE__) . 'mystyles.css', array(), '1.0.0', false); | |
} | |
add_action('wp_enqueue_scripts', 'enqueue_my_styles', 101); // Priority should start from 101 and above |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment