Skip to content

Instantly share code, notes, and snippets.

@rodica-andronache
Last active December 17, 2015 16:08
Show Gist options
  • Save rodica-andronache/5636083 to your computer and use it in GitHub Desktop.
Save rodica-andronache/5636083 to your computer and use it in GitHub Desktop.
WORDPRESS - Adaugare css stylesheet in functions.php
function my_scripts_styles() {
wp_register_style( 'style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'style' );
}
add_action('wp_enqueue_scripts', 'my_scripts_styles');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment