2017-03-15 11 views
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 
*/ 
?> 

答えて

0

このプラグインは公にwordpress.org上でホストされている場合:異なるユニークな、例えば何かに上部のコメント欄で

変更Plugin Name: Display Medium PostsPlugin Name: Display Medium Posts - Fahad's Edition。これ以上自動的には更新されません。

変更を即時に適用するには、wp_optionsテーブルから_site_transient_update_pluginsを削除する必要があります。例えば、 Can I remove transients in the wp_options table of my WordPress install?

+0

最後に、プラグインの名前を変更しましたが、まだ更新されています。 –

+0

@FahadUddin自分で試してみましたが、サイトの一時キャッシュをクリアする必要があります。 –

関連する問題