| Server IP : 46.62.235.243 / Your IP : 216.73.216.217 Web Server : Apache/2.4.58 (Ubuntu) System : Linux Linkabili3Dicembre 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/puntounicodisabilita/wp-content/themes/neve-fse/inc/ |
Upload File : |
<?php
/**
* Main theme class.
*
* @author Themeisle
* @package neve-fse
* @since 1.0.0
*/
namespace NeveFSE;
/**
* Class Core
*
* @package neve-fse
*/
class Core {
/**
* Core instance.
*
* @var Core
*/
public static $instance = null;
/**
* Get the static instance of the class.
*
* @return Core
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Core constructor.
*/
public function __construct() {
$this->run_hooks();
new Admin();
new Block_Patterns();
new Block_Styles();
}
/**
* Initialize hooks.
*
* @return void
*/
private function run_hooks() {
add_action( 'after_setup_theme', array( $this, 'setup' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue' ) );
add_action( 'enqueue_block_editor_assets', array( $this, 'add_editor_styles' ) );
}
/**
* Setup theme.
*
* @return void
*/
public function setup() {
load_theme_textdomain( 'neve-fse', NEVE_FSE_DIR . '/languages' );
$starter_content = new Starter_Content();
add_theme_support( 'starter-content', $starter_content->get() );
add_theme_support( 'wp-block-styles' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'title-tag' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'editor-styles' );
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'neve-fse' ) ) );
}
/**
* Enqueue scripts and styles.
*
* @return void
*/
public function enqueue() {
Assets_Manager::enqueue_style( Assets_Manager::ASSETS_SLUGS['frontend-css'], 'style' );
}
/**
* Add editor styles.
*
* @return void
*/
public function add_editor_styles() {
Assets_Manager::enqueue_style( Assets_Manager::ASSETS_SLUGS['editor-css'], 'editor' );
}
}