%s

', esc_html( initiator_compatibility_check() ) ); } /** * 2.0 - Autoload Backrop Core */ if ( file_exists( get_parent_theme_file_path( '/vendor/autoload.php' ) ) ) { require_once get_parent_theme_file_path( '/vendor/autoload.php' ); } /** * 3.0 - Additional Features */ array_map( function( $inline_styles ) { require_once get_parent_theme_file_path( "/includes/inline-styles/{$inline_styles}.php" ); }, [ 'custom-image', 'header-image', ] ); array_map( function( $customize ) { require_once get_parent_theme_file_path( "/includes/customize/{$customize}.php" ); }, [ 'landing-page', 'theme-options', 'title-description', 'validations', ] ); array_map( function( $config ) { require_once get_parent_theme_file_path( "/includes/config/{$config}.php" ); }, [ 'functions-portfolio', ] ); array_map( function( $sidebar ) { require_once get_parent_theme_file_path( "/includes/sidebar/{$sidebar}.php" ); }, [ 'sidebar-portfolio', ] );