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,
),
);
}