Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
drleilu
/
www
/
wp-content
/
themes
/
bella-beauty
/
core
/
✏️
Editing: starter.php
<?php namespace BellaBeautySpace; use BellaBeautySpace\Core\Core; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * Starter class for theme modules. * * Includes autoloader and Core class. */ class Starter { /** * Starter constructor. * * Includes autoloader and Core class. */ public function __construct() { require_once get_parent_theme_file_path( '/core/autoloader.php' ); Autoloader::run(); new Core(); } } new Starter();
💾 Save
❌ Cancel