/* error_reporting(E_ALL); ini_set('display_errors', '1'); */ add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles'); function theme_enqueue_styles() { $stylesheet_directory_uri = get_stylesheet_directory_uri(); wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); } //Auto update plugins add_filter( 'auto_update_plugin', '__return_true' ); //Auto update themes add_filter( 'auto_update_theme', '__return_true' ); add_filter( 'allow_dev_auto_core_updates', '__return_true' ); // Enable development updates add_filter( 'allow_minor_auto_core_updates', '__return_true' ); // Enable minor updates add_filter( 'allow_major_auto_core_updates', '__return_true' ); // Enable major updates