WordPress Version: 4.6
/**
* Callback function for ob_start() to capture all links in the theme.
*
* @since 2.6.0
* @deprecated 4.3.0
* @access private
*
* @param string $content
* @return string
*/
function preview_theme_ob_filter($content)
{
_deprecated_function(__FUNCTION__, '4.3.0');
return $content;
}