Move /updater/ folder to /functions/ folder and update functions.php

This commit is contained in:
Alexander Agnarson 2020-03-23 19:25:39 +01:00
parent e9049d0aca
commit a9dc658a98
4 changed files with 1 additions and 1 deletions

View file

@ -16,7 +16,7 @@ include( get_template_directory() . '/functions/kirki/kirki.php' );
// Load theme updater functions
function split_theme_updater() {
require( get_template_directory() . '/updater/theme-updater.php' );
require( get_template_directory() . '/functions/updater/theme-updater.php' );
}
add_action( 'after_setup_theme', 'split_theme_updater' );