Can you post a link to your site?
Hello, I’m trying to create my first child theme (Minamaze). I set up the CSS file and a Functions.php file. But the child theme doesn’t look like the parent. Here’s the style.css file content I have:
/*
Theme Name: minamaze-child
Theme URI: http://islandsconservativepresbytian.org/minamaze-child-theme
Description: Minamaze Child Theme
Author: Wayne Bogue
Author URI: http://islandsconservativepresbyterian.org
Template: minamaze
Text Domain: minamaze-child
*/
/* =Theme customization starts here
-------------------------------------------------------------- */
Here’s the functions.php file content:
<?php
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' );
}
Can any tell me what I’m doing wrong?
Thanks! http://www.islandsconservativepresbyterian.org
WayneBogue – Please post your own separate topic for this 🙂