函数原型
preview_theme_ob_filter( string $content ): string
函数描述
Callback function for ob_start() to capture all links in the theme.
是否弃用
Warning: This function has been deprecated.
函数参数
-
$content
string
Required
函数返回值
string
函数位置
File: wp-includes/deprecated.php.
函数源码
function preview_theme_ob_filter( $content ) {
_deprecated_function( __FUNCTION__, '4.3.0' );
return $content;
}
源码链接
变更日志
| Version | Description |
|---|---|
| 4.3.0 | This function has been deprecated. |
| 2.6.0 | Introduced. |

