wpseek.com
A WordPress-centric search engine for devs and theme authors



preview_theme_ob_filter › WordPress Function

Since2.6.0
Deprecated4.3.0
preview_theme_ob_filter ( $content )
Access:
  • private
Parameters:
  • (string) $content
    Required: Yes
Returns:
  • (string)
Defined at:
Codex:

Callback function for ob_start() to capture all links in the theme.



Source

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