Widget problem with Great Child Theme
-
Using the most basic files to begin a child theme (below), my resulting (live preview) site has no sidebar widgets, the Sidebar widgets in the Header, the Header widgets are in the Footer1, the Footer1 widgets in Footer2, etc.
My child files are:
style.css:
/*
Theme Name: Great Child
Description: Child theme for Great theme for my website
Author: me
Version: 1.0.0
Template: great
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: great-child
*/functions.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’ );
}
?>My live site is newfieldny.org using the Great theme. The problem I am seeing is in the Live Preview and I don’t want to activate it on my live site until I figure out the widget problem.
- The topic ‘Widget problem with Great Child Theme’ is closed to new replies.