📅  最后修改于: 2022-03-11 14:59:56.045000             🧑  作者: Mango
function turn_blogposts_translation_off( $post_types, $is_settings ) {
unset( $post_types['post'] );
return $post_types;
}
add_filter( 'pll_get_post_types', 'turn_blogposts_translation_off', 10, 2 );