HEX
Server: Apache/2
System: Linux cloudserver.ecpvn.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User: monspa (1053)
PHP: 7.4.33
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/monspa/domains/monspa.vn/public_html/wp-content/plugins/remove-schema/remove-schema.php
<?php

/**
 * The plugin bootstrap file
 *
 * This file is read by WordPress to generate the plugin information in the plugin
 * admin area. This file also includes all of the dependencies used by the plugin,
 * registers the activation and deactivation functions, and defines a function
 * that starts the plugin.
 *
 * @link              https://plugin.nl/
 * @since             1.0.0
 * @package           Remove_Schema
 *
 * @wordpress-plugin
 * Plugin Name:       Remove Schema
 * Plugin URI:        https://plugin.nl/en/remove-schema-plugin/
 * Description:       Remove all Microdata, RDFa and/or JSON-ld that you don’t want on your page.
 * Version:           1.6.1
 * Author:            Plugin.nl
 * Author URI:        https://plugin.nl/en/remove-schema-plugin/
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       remove-schema
 * Domain Path:       /languages
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * Currently plugin version.
 */
define( 'REMOVE_SCHEMA_VERSION', '1.6.1' );

/**
 * The core plugin class that is used to define internationalization,
 * admin-specific hooks, and public-facing site hooks.
 */
require plugin_dir_path( __FILE__ ) . 'includes/class-remove-schema.php';

/**
 * Begins execution of the plugin.
 *
 * @since    1.0.0
 */
function run_remove_schema() {

	$plugin = new Remove_Schema();
	$plugin->run();

}
run_remove_schema();