Fatal error: Cannot redeclare load_stylesheets() (previously declared in
You can’t use a function name in your child theme that is in use by your parent theme. Your parent theme likely has a function named load_stylesheets(), so if you add a function with that name to your child theme you will get this error. To work around this you need to give your child … Read more