Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Last active February 13, 2024 07:51
Show Gist options
  • Save taniarascia/3fbfdc976cda1be48e8c to your computer and use it in GitHub Desktop.
Save taniarascia/3fbfdc976cda1be48e8c to your computer and use it in GitHub Desktop.
Add styles and scripts
// Add Stylesheets
function oblate_scripts() {
wp_enqueue_style( 'style', get_template_directory_uri() . '/css/style.min.css' );
wp_enqueue_script( 'prism', get_template_directory_uri() . '/js/prism.js', array(), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'oblate_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment