Guest User

Untitled

a guest
Mar 23rd, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2. add_action( 'wp_enqueue_scripts', 'hashone_enqueue_styles' );
  3. function hashone_enqueue_styles() {
  4. wp_enqueue_style( 'hashone-parent-style', get_template_directory_uri() .
  5. '/style.css' );
  6. }
  7.  
  8. /*
  9. * Theme Name: HashOne Child
  10. * Template: hashone
  11. * Text Domain: hashone-chile
  12. */
  13.  
  14. <?php
  15. add_action( 'wp_enqueue_scripts', function() {
  16. wp_enqueue_style( 'hashone-parent-style', get_template_directory_uri() . '/style.css' );
  17. });
  18.  
  19. #site-title {
  20. color: #000000;
  21. background: #ffffff;
  22. }
  23.  
  24. #site-title {
  25. color: #ffffff !important;
  26. background: #000000 !important;
  27. }
  28.  
  29. get_theme_file_uri()
  30. get_parent_theme_file_uri()
  31. get_theme_file_path()
  32. get_parent_theme_file_path()
  33.  
  34. get_stylesheet_directory_uri()
  35. get_template_directory_uri()
  36. get_stylesheet_directory()
  37. get_template_directory()
Add Comment
Please, Sign In to add comment