以下代码段将对post\\U类型禁用它post
(修改以下数组以影响其他post\\u类型):
function qtrans_disable()
{
global $typenow, $pagenow;
if (in_array($typenow, array(\'post\')) && // post_types where qTranslate should be disabled
in_array($pagenow, array(\'post-new.php\', \'post.php\')))
{
remove_action(\'admin_head\', \'qtrans_adminHeader\');
remove_filter(\'admin_footer\', \'qtrans_modifyExcerpt\');
remove_filter(\'the_editor\', \'qtrans_modifyRichEditor\');
}
}
add_action(\'current_screen\', \'qtrans_disable\');
类似地,您可以对特定的post ID禁用它。但是要考虑到
won\'t affect 已存在多语言内容。因此,请在输入任何之前使用它。