Advertisement
Guest User

Untitled

a guest
Apr 25th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. function profondo_scripts() {
  2. wp_enqueue_style( 'twentyfifteen-style', get_template_directory_uri() . '/style.css' );
  3. wp_enqueue_style( 'profondo-child-style', get_stylesheet_uri() );
  4. }
  5.  
  6. add_action( 'wp_enqueue_scripts', 'profondo_scripts' );
  7.  
  8. add_action( 'wp_enqueue_scripts', 'profondo_scripts' );
  9.  
  10. function profondo_scripts() {
  11. wp_enqueue_style( 'twentyfifteen-style', get_template_directory_uri() . '/style.css' );
  12. wp_enqueue_style( 'profondo-child-style', get_stylesheet_uri() );
  13. }
  14.  
  15. wpse_185390_function(); // Perfectly fine, even though the function is defined "afterwards"
  16.  
  17. function wpse_185390_function() {
  18. echo 'I'm down here!';
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement