Skip to content

Instantly share code, notes, and snippets.

@theodorocaliari
Last active December 19, 2015 06:49
Show Gist options
  • Save theodorocaliari/5913763 to your computer and use it in GitHub Desktop.
Save theodorocaliari/5913763 to your computer and use it in GitHub Desktop.
Call style recommended practice in functions.php of WordPress
<?php
function custom_style(){
$css = dirname(get_bloginfo('stylesheet_url'))."/your_style.css";
wp_register_style('name_ur_choice', $css);
wp_enqueue_style('name_ur_choice');
}
add_action('wp_enqueue_scripts', 'custom_style', $priority);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment