Skip to content

Instantly share code, notes, and snippets.

@davidtowoju
Last active February 1, 2021 12:55
Show Gist options
  • Save davidtowoju/5ba589170f8add8854f04d37244742f8 to your computer and use it in GitHub Desktop.
Save davidtowoju/5ba589170f8add8854f04d37244742f8 to your computer and use it in GitHub Desktop.
Add scripts to MemberPress Courses Classroom Theme
<?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