函数原型
get_real_file_to_edit( string $file ): string
函数描述
Get the real filesystem path to a file to edit within the admin.
是否弃用
Warning: This function has been deprecated.
函数参数
-
$file
string
Required - Filesystem path relative to the wp-content directory.
函数返回值
string Full filesystem path to edit.
函数位置
File: wp-admin/includes/deprecated.php.
函数源码
function get_real_file_to_edit( $file ) {
_deprecated_function( __FUNCTION__, '2.9.0' );
return WP_CONTENT_DIR . $file;
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.9.0 | This function has been deprecated. |
| 1.5.0 | Introduced. |

