Beautiful design, clear structure
-
I like the design of Hemingway very much and with the clear structure it is quite easy to adapt.
It only tooks me soooo much time until I found the code for the necessary extension of the child themes functions.php to include Google fonts locally.
/*———————————————————————————–*/
/* you need this for the child themes functions.php:
/*———————————————————————————–*/
function hemingway_child_load_style() {
if ( ! is_admin() ) {
wp_register_style( ‘hemingway_style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘hemingway_child_style’, get_stylesheet_uri(), array( ‘hemingway_style’ ) );
}
}
add_action( ‘wp_print_styles’, ‘hemingway_child_load_style’ );Thank you to Anders Noren for the nice theme.
- The topic ‘Beautiful design, clear structure’ is closed to new replies.