preview_theme_ob_filter_callback

函数
preview_theme_ob_filter_callback ( $matches )
Access
Private
参数
  • (array) $matches
    Required:
返回值
  • (string)
定义位置
相关方法
preview_theme_ob_filter_preview_theme_template_filter_preview_theme_stylesheet_filter_wp_preview_terms_filterpreview_theme
引入
2.6.0
弃用
4.3.0

preview_theme_ob_filter_callback函数是一个WordPress的函数,被用作preview_theme_ob_filter过滤器的回调函数。它用于修改预览页面的HTML输出,例如添加或删除HTML标签。

操纵预览主题链接,以控制和保持位置。

preg_replace_callback()的回调函数,接受和过滤匹配。

function preview_theme_ob_filter_callback( $matches ) {
	_deprecated_function( __FUNCTION__, '4.3.0' );
	return '';
}

常见问题

FAQs
查看更多 >