wp_editor_expand

过滤钩子
apply_filters( 'wp_editor_expand', true, $post_type )
参数
  • (bool) $expand Whether to enable the 'expand' functionality. Default true.
    Required:
  • (string) $post_type Post type.
    Required:
定义位置
相关勾子
wp_editor_settingswp_editor_set_qualitywp_code_editor_settingswp_error_addedwp_redirect
相关方法
wp_editorwp_mkdir_pwp_randwp_import_cleanupwp_embed_register_handlerwp_print_editor_js
引入
4.1.0
弃用
-

wp_editor_expand是 WordPress 中的过滤器钩子,它允许开发人员控制是否应扩展或收缩文章编辑屏幕中的可视化编辑器。默认情况下,可视化编辑器是收缩的,过滤器钩子允许开发人员通过返回true以展开编辑器或false保持收缩来更改此行为。

过滤是否在文章编辑器中启用”扩展” 功能。

if ( apply_filters( 'wp_editor_expand', true, $post_type ) ) {

常见问题

FAQs
查看更多 >