文件操作 - init.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/stanleysteamer/public_html/wp-content/themes/bricks/includes/init.php
编辑文件内容
<?php namespace Bricks; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Theme { public $components; public $capabilities; public $database; public $helpers; public $cli; public $breakpoints; public $blocks; public $revisions; public $license; public $theme_styles; public $custom_fonts; public $settings; public $setup; public $search; public $ajax; public $svg; public $templates; public $heartbeat; public $converter; public $maintenance; public $admin; public $feedback; public $api; public $elements; public $woocommerce; public $polylang; public $integrations_form; public $wpml; public $instagram; public $rank_math; public $yoast; public $block_editor; public $builder; public $frontend; public $assets; public $interactions; public $popups; public $conditions; public $auth_redirects; public $query_filters; public $query_filters_indexer; public $query_filters_fields; /** * The one and only Theme instance * * @var Theme */ public static $instance = null; /** * Autoload and init components */ public function __construct() { $this->autoloader(); $this->init(); } /** * Autoload files */ private function autoloader() { require_once BRICKS_PATH . 'includes/autoloader.php'; Autoloader::register(); } /** * Init components */ public function init() { Compatibility::register(); $this->components = new Components(); $this->capabilities = new Capabilities(); $this->database = new Database(); $this->helpers = new Helpers(); $this->cli = new CLI(); $this->maintenance = Maintenance::get_instance(); $this->breakpoints = new Breakpoints(); $this->blocks = new Blocks(); $this->revisions = new Revisions(); $this->license = new License(); $this->setup = new Setup(); $this->search = new Search(); $this->custom_fonts = new Custom_Fonts(); $this->interactions = new Interactions(); $this->popups = new Popups(); // Element Conditions API $this->conditions = new Conditions(); $this->auth_redirects = new Auth_Redirects(); // Load before elements (theme style settings needed inside element render) $this->theme_styles = new Theme_Styles(); // Load all elements in builder, but only requested elements on frontend $this->elements = new Elements(); // Loads WooCommerce integration, if activated $this->woocommerce = new Woocommerce(); $this->ajax = new Ajax(); $this->svg = new Svg(); $this->templates = new Templates(); $this->settings = new Settings(); // Integrations $this->integrations_form = new Integrations\Form\Init(); $this->polylang = new Integrations\Polylang\Polylang(); $this->wpml = new Integrations\Wpml\Wpml(); $this->instagram = new Integrations\Instagram\Instagram(); $this->rank_math = new Integrations\Rank_Math\Rank_Math(); $this->yoast = new Integrations\Yoast\Yoast(); $this->block_editor = new Integrations\Block_Editor(); if ( is_admin() ) { $this->admin = new Admin(); $this->converter = new Converter(); $this->feedback = new Feedback(); } $this->api = new Api(); /** * Dynamic Data * * Order matters: 'cmb2' before 'wp' so it can filter the custom fields correctly. * * NOTE: bricks/dynamic_data/register_providers Undocumented (@since 1.6.2) */ $dynamic_data_providers = apply_filters( 'bricks/dynamic_data/register_providers', [ 'cmb2', 'wp', 'woo', 'acf', 'pods', 'metabox', 'toolset', 'jetengine', ] ); Integrations\Dynamic_Data\Providers::register( $dynamic_data_providers ); // Check for builder instance inside Heartbeat class $this->heartbeat = new Heartbeat(); if ( bricks_is_builder() ) { $this->builder = new Builder(); } else { if ( ! is_admin() ) { $this->frontend = new Frontend(); } } $this->assets = new Assets(); // Query Filters (@since 1.9.6) if ( Helpers::enabled_query_filters() ) { $this->query_filters = Query_Filters::get_instance(); $this->query_filters_indexer = Query_Filters_Indexer::get_instance(); // @since 1.10 if ( Helpers::enabled_query_filters_integration() ) { $this->query_filters_fields = Integrations\Query_Filters\Fields::get_instance(); // @since 1.11.1 } } // Include Query API class (@since 2.1) require_once BRICKS_PATH . 'includes/integrations/query/query-api.php'; // Include Query Array class (@since 2.2) require_once BRICKS_PATH . 'includes/integrations/query/query-array.php'; } /** * Main Theme instance * * Ensure only one instance of Theme exists at any given time. * * @return object Theme The one and only Theme instance */ public static function instance() { if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Theme ) ) { self::$instance = new self(); } return self::$instance; } } // Get the theme up and running Theme::instance();
修改文件时间
将文件时间修改为当前时间的前一年
删除文件