3
我有一個WordPress插件,根據我的需要進行了修改。當我將它推送到站點時,當有新的更新覆蓋我的更改時它會自動更新。我想斷開它與WordPress插件目錄的連接,以便停止更新。我需要更改哪個功能?如何阻止WordPress插件更新?
<?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 http://www.acekyd.com
* @since 1.0.0
* @package Display_Medium_Posts
*
* @wordpress-plugin
* Plugin Name: Display Medium Posts
* Plugin URI: https://github.com/acekyd/display-medium-posts
* Description: Display Medium Posts is a wordpress plugin that allows users display posts from medium.com on any part of their website.
* Version: 3.0
* Author: AceKYD
* Author URI: http://www.acekyd.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: display-medium-posts
* Domain Path: /languages
*/
?>
在我最後一次嘗試中,我更改了插件的名稱,但它仍然得到更新。 –
@FahadUddin剛剛嘗試過,您需要清除您網站的暫存緩存 - 請參閱更新後的答案。 –