preview_theme_ob_filter

函数


preview_theme_ob_filter ( $content )
Access
Private
参数
  • (string)
    $content
    Required:
返回值
  • (string)
定义位置
  • wp-includes/deprecated.php
    , line 3532
引入
2.6.0
弃用
4.3.0

ob_start()的回调函数,用于捕获主题中的所有链接。

function preview_theme_ob_filter( $content ) {
	_deprecated_function( __FUNCTION__, '4.3.0' );
	return $content;
}