TGMPA 是 WordPress 上比較流行的內置插件遠程更新工具,但對於中國用户來説,這些主題作者推薦的很多東西都算是無效的。
有些很好用的主題,我們只是想要個簡單的界面和風格,所以為了保持簡單,就自己做個子主題給覆蓋刪除掉此選項。

下面的三行代碼刪除註冊只需要第二行就行,另外需要注意看相關的函數值,改成對應的主題的函數。
// Setup child plugins
add_action( 'after_setup_theme', 'child_theme_plugins' );
function child_theme_plugins() {
add_action( 'tgmpa_register', 'register_theme_plugins' );
}
// Remove parent plugins
add_action( 'after_setup_theme', 'remove_parent_plugins', 11 );
function remove_parent_plugins() {
remove_action( 'tgmpa_register', 'parent_plugins' );
}
// Register plugins
function register_theme_plugins() {
$plugins = array(
array(
'name' => 'FV Top Level Categories',
'slug' => 'fv-top-level-cats',
'required' => false,
),
);
}