I’m now implementing your enfold-child theme on a fresh installation and have a question:
I’m following the instructions found at http://codex.wordpress.org/Child_Themes. The functions.php file that comes with your enfold-child theme is mostly blank. Do you recommend we put the .php code shown in the instructions that “enqueue” the parent theme (I have no idea what this means!).
Here’s one of the examples shown. Which one do we use?
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’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}
Thank You,
Eric