返回一个空字符串。
原型
__return_empty_string()
描述
用于容易地将空字符串返回到过滤器。
参考:
- __return_null()
返回值
(string)
空字符串。
源文件
路径:wp-includes/functions.php
<?php
...
function __return_empty_string() {
return '';
}
...
?>
其他
英文文档:https://developer.wordpress.org/reference/functions/__return_empty_string/