Skip to content

Instantly share code, notes, and snippets.

@newmediologo
Created May 19, 2015 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save newmediologo/7e2d59a818de8a73915a to your computer and use it in GitHub Desktop.
Save newmediologo/7e2d59a818de8a73915a to your computer and use it in GitHub Desktop.
functions.php
<?php // Tag di apertura PHP non inserire nulla prima, neanche uno spazio
// Qui inserite le funzioni da attivare, questa sotto è un esempio
add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style' );
function enqueue_parent_theme_style() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment