first commit

This commit is contained in:
gustavooth
2026-07-23 20:32:08 -03:00
commit 2df14d57dd
62 changed files with 9780 additions and 0 deletions
@@ -0,0 +1,30 @@
<?php
/**
* Gustavo Portfolio theme bootstrap.
*
* @package Gustavo_Portfolio
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
$gustavoo_portfolio_includes = array(
'/inc/defaults.php',
'/inc/setup.php',
'/inc/enqueue.php',
'/inc/template-tags.php',
'/inc/customizer.php',
'/inc/forms.php',
'/inc/widgets.php',
);
foreach ( $gustavoo_portfolio_includes as $gustavoo_portfolio_file ) {
$gustavoo_portfolio_path = get_theme_file_path( $gustavoo_portfolio_file );
if ( file_exists( $gustavoo_portfolio_path ) ) {
require_once $gustavoo_portfolio_path;
}
}
unset( $gustavoo_portfolio_file, $gustavoo_portfolio_includes, $gustavoo_portfolio_path );