devinsays / edd-theme-updater

Sample theme updater for EDD.
23 stars 9 forks source link

Child Theme #17

Open stoffl6781 opened 6 years ago

stoffl6781 commented 6 years ago

hi, how can i use this for a child theme?

if i load in the style.css the child theme, the tehem crash (will be blank) have you a idea to fix this?

`<?php /**

/**

function prefix_theme_updater() { require( get_template_directory() . '/updater/theme-updater.php' ); } add_action( 'after_setup_theme', 'prefix_theme_updater' );

function child_theme_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-theme-css', get_stylesheet_directory_uri() .'/style.css' , array('parent-style'));

} add_action( 'wp_enqueue_scripts', 'child_theme_styles' );`