有一个官方过滤器,jetpack_active_modules
, 为了这个现在。它将根据需要强制启用/禁用模块。
下面的示例将禁用所有内容,取消注释一行将启用该模块。在您的情况下,只需确保描述所需模块的字符串在返回之前存在于数组中。
function wpse248480_jetpack_active_modules( $active ) {
$active = array(
// \'after-the-deadline\',
// \'carousel\',
// \'comment-likes\',
// \'comments\',
// \'contact-form\',
// \'custom-content-types\',
// \'custom-css\',
// \'enhanced-distribution\',
// \'google-analytics\',
// \'gravatar-hovercards\',
// \'infinite-scroll\',
// \'json-api\',
// \'latex\',
// \'lazy-images\',
// \'likes\',
// \'manage\',
// \'markdown\',
// \'masterbar\',
// \'minileven\',
// \'module-extras\',
// \'module-headings\',
// \'module-info\',
// \'monitor\',
// \'notes\',
// \'photon\',
// \'post-by-email\',
// \'protect\',
// \'publicize\',
// \'pwa\',
// \'related-posts\',
// \'search\',
// \'seo-tools\',
// \'sharedaddy\',
// \'shortcodes\',
// \'shortlinks\',
// \'sitemaps\',
// \'sso\',
// \'stats\',
// \'subscriptions\',
// \'theme-tools\',
// \'tiled-gallery\',
// \'vaultpress\',
// \'verification-tools\',
// \'videopress\',
// \'widget-visibility\',
// \'widgets\',
// \'wordads\',
// \'wpgroho.js\',
);
return $active;
}
add_filter( \'jetpack_active_modules\', \'wpse248480_jetpack_active_modules\' );