文件操作 - podlove-web-player.php
返回文件管理
返回主菜单
删除本文件
文件: /home/moin/htdocs/www.moin.show/wp-content/plugins/podlove-web-player/podlove-web-player.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://docs.podlove.org/podlove-web-player/ * @since 5.0.2 * @package Podlove_Web_Player * * @wordpress-plugin * Plugin Name: Podlove Web Player * Plugin URI: https://docs.podlove.org/podlove-web-player/ * Description: Audio First Podcast Web Player * Version: 5.9.2 * Author: Podlove * Author URI: http://podlove.org * License: MIT * License URI: https://opensource.org/licenses/MIT * Text Domain: podlove-web-player * Domain Path: /languages */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } define( 'PODLOVE_WEB_PLAYER_VERSION', '5.9.2' ); define( 'PODLOVE_WEB_PLAYER_PATH', plugins_url( '', __FILE__ ) ); /** * The code that runs during plugin activation. * This action is documented in includes/class-podlove-web-player-activator.php */ function activate_podlove_web_player($network) { require_once plugin_dir_path( __FILE__ ) . 'includes/class-podlove-web-player-activator.php'; Podlove_Web_Player_Activator::activate('podlove-web-player', $network); } register_activation_hook( __FILE__, 'activate_podlove_web_player' ); /** * 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-podlove-web-player.php'; /** * Begins execution of the plugin. * * Since everything within the plugin is registered via hooks, * then kicking off the plugin from this point in the file does * not affect the page life cycle. * * @since 5.0.2 */ function run_podlove_web_player() { $plugin = new Podlove_Web_Player(); $plugin->run(); } run_podlove_web_player();
修改文件时间
将文件时间修改为当前时间的前一年
删除文件