正如@TheDeadMedic提到的,API将排除任何带有下划线的元。删除下划线不是一个好主意,因为它可能会破坏代码或依赖项中的某些内容,但是您可以尝试在函数中添加这样的代码。php取消对所需元数据的保护
add_filter( \'is_protected_meta\', \'wp692_meta_unprotect\', 10, 2 );
function wp692_meta_unprotect( $protected, $meta_key ) {
return $meta_key == \'_company_phone\' ? false : $protected;
}