这很简单。
记住,我不知道插件的文件名和目录是什么,下面的代码没有经过测试。
把这个放到functions.php
或者创建一个小插件。
<?php
add_filter( \'option_active_plugins\', \'wpse264498_deactivate_fat_gallery\' );
function wpse264498_deactivate_fat_gallery($plugins){
// check if you are on the certain page
global $pagenow;
if( $pagenow == \'post-new.php\' ) {
// check if it\'s right CPT
if( isset($_GET[\'post_type\']) && $_GET[\'post_type\'] == \'sln_booking\') {
// search the plugin to disable among active plugins
// Warning! Check the plugin directory and name
$key = array_search( \'fat-gallery/fat-gallery.php\' , $plugins );
// if found, unset it from the active plugins array
if ( false !== $key ) {
unset( $plugins[$key] );
}
}
}
return $plugins;
}
还有,你可以试试
Plugin Organizer.