widget_text_content

过滤钩子
apply_filters( 'widget_text_content', $text, $instance, $this )
参数
  • (string) $text The widget content.
    Required:
  • (array) $instance Array of settings for the current widget.
    Required:
  • (WP_Widget_Text) $widget Current Text widget instance.
    Required:
定义位置
相关勾子
widget_block_contentwidget_custom_html_contentwidget_textgettext_with_contextngettext_with_context
相关方法
get_the_contentget_the_content_feedget_theme_starter_contentthe_contenttranslate_with_gettext_contextget_url_in_content
引入
4.8.0
弃用
-

widget_text_content: 这是一个过滤器钩子,允许开发人员修改 WordPress 中文本小工具的内容,类似于widget_text. 然而,这个钩子是特定于小工具的内容的,可以用来修改内容而不影响小工具的任何其他方面。

对文本小工具的内容进行过滤,以应用视觉(TinyMCE)编辑器所期望的变化。

默认情况下,应用的是the_content过滤器的子集,包括wpautop和wptexturize。

$text = apply_filters( 'widget_text_content', $text, $instance, $this );

常见问题

FAQs
查看更多 >