Advertisement
Guest User

Untitled

a guest
Dec 6th, 2022
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | Source Code | 0 0
  1. function my_theme_enqueue_styles() {
  2.     $parent_style = 'parent-style'; // Este é o estilo.css do tema pai.
  3.     wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
  4.     wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') );
  5. }
  6. add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement