Yes, I am adding the following code
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’, ‘/wp-content/themes/harmonchild/style.css’ );
}
my child theme is harmonchild. I created a functions.php in child theme directory copied everything from parent theme’s functions.php and pasted your code to the very last. The previous line is add_action(‘wp_head’, ‘maxflat_site_title’, 1);
I know zero php and i know I am making some mistake, but I don’t know what.