Hello
I have tried to setup a child theme following the link:
http://codex.wordpress.org/Child_Themes
My style.css has the following in it:
/*
Theme Name: ultimate-pro-child
Theme URI: http://catawaterwm.com/ultimate-pro-child
Description: Ultimate Pro Child Theme
Author: James Buckmaster
Author URI: http://catawaterwm.com
Template: ultimate-pro
Text Domain: ultimate—pro-child
*/
My function.php has:
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/ultimate-pro/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/ultimate-pro-child/style.css’,
array(‘parent-style’)
);
}
when I go to look at me themes I get this:
Broken Themes
The following themes are installed but incomplete. Themes must have a stylesheet and a template.
Name Description ultimate-pro-child Stylesheet is missing.
I’d like to make some modification on the CSS sheets and need to get this child set up just
not sure what I have done wrong.
/* write custom css */