_oembed_filter_feed_content

函数
_oembed_filter_feed_content ( $content )
Access
Private
参数
  • (string) $content The content to filter.
    Required:
返回值
  • (string) The filtered content.
定义位置
相关方法
filter_block_contentwp_oembed_register_routerest_filter_response_by_contextget_theme_starter_contentwp_filter_content_tags
引入
4.4.0
弃用
-

_oembed_filter_feed_content: 这个函数用来过滤feed中oEmbed响应的内容。

准备好显示在RSS提要中的嵌入HTML。

function _oembed_filter_feed_content( $content ) {
	return str_replace( '<iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);"', '<iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"', $content );
}

常见问题

FAQs
查看更多 >