简体   繁体   中英

Wordpress child theme breaks site appearance

I am using Splash theme from StylemixThemes. I am trying to create a child theme in order to edit some things but when I am activating it I do not get the same result as the parent theme.

Inside the child theme folder I have the style.css and the functions.php . Here is the functions.php code

 <?php

add_action('wp_enqueue_scripts', 'enqueue_parent_theme_styles'); function enqueue_parent_theme_styles() {
    wp_enqueue_style('parent-style', get_template_directory_uri().'/style.css'); }

I am attaching a screenshot for both parent and child theme to show the difference.

parent

child

I am wondering if there is a solution or if there is something I am missing.

Thanks in advance!

您可以从wpbeginner.com创建自定义的子主题学习

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM