Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
themes
/
mannoniavocat
/
inc
/
mods
/
bundled-content
:
bundled-content.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * Bundled plugin content * @package the7 * @since 5.1.5 */ // File Security Check if ( ! defined( 'ABSPATH' ) ) { exit; } require_once dirname( __FILE__ ) . '/includes/main-module.class.php'; function bundled_content() { static $instance = null; if ( null === $instance ) { $instance = new BundledContentMainModule(); } return $instance; } $bundledContent = bundled_content(); $bundledContent->execute();