/home/silvwabw/public_html/wp-content/themes/taxico/inc/autoload.php
<?php
/**
 * Autoload function
 *
 * @author Jegtheme
 * @package taxico
 */

spl_autoload_register(
	function( $class ) {
		$prefix   = 'Taxico';
		$base_dir = TAXICO_DIR . 'inc/class/';
		$len      = strlen( $prefix );

		if ( strncmp( $prefix, $class, $len ) !== 0 ) {
			return;
		}

		$array_path     = explode( '\\', substr( $class, $len ) );
		$relative_class = array_pop( $array_path );
		$class_path     = strtolower( implode( '/', $array_path ) );
		$class_name     = str_replace( '_', '-', 'class-' . $relative_class . '.php' );

		$file = rtrim( $base_dir, '/' ) . '/' . $class_path . '/' . strtolower( $class_name );

		if ( is_link( $file ) ) {
			$file = readlink( $file );
		}

		if ( is_file( $file ) ) {
			require $file;
		}
	}
);