Problem with Child Theme
-
I created my child theme, but there are some things that changed in some buttons.
Which is the problem?
My page: https://eahdesigns.com.ar/prueba/#My css:
/*
Theme Name: JustWrite-Child
Theme URI: https://www.eahdesigns.com.ar/prueba/wp-content/themes/justwrite-child
Description: Just Write Child Theme
Author: EAH Designs
Author URI: https://www.eahdesigns.com.ar
Template: justwrite
Version: 1.0.7
License: GNU General Public License v2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/My PHP:
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}
?>How can I know which is the problem?
- The topic ‘Problem with Child Theme’ is closed to new replies.