/*
Theme Name: Your Theme Name
Theme URI: You Site URI
Author: the WordPress team
Author URI: Author URI
Version: version number
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
This theme, like WordPress, is licensed under the GPL.
*/
Copy and paste the above code into your style.css, it will create your custom theme.
]]>/*
Theme Name: Twenty Seventeen-child
Text Domain: twentyseventeen
*/
// This @import line loads the stylesheet from the parent theme
@import url(“../twentyseventeen/style.css”);
// Now we can override styles from the parent theme…
body {
background: #eeeeee;
}
style.css
needs to contain a Template:
line that contains the name of the folder where the parent theme is located:
Theme Name: Twenty Seventeen-child
Text Domain: twentyseventeen
Template: twentyseventeen
]]>