render_block

过滤钩子
apply_filters( 'render_block', $block_content, $this->parsed_block, $this )
参数
  • (string) $block_content The block content.
    Required:
  • (array) $block The full block, including name and attributes.
    Required:
  • (WP_Block) $instance The block instance.
    Required:
定义位置
相关勾子
pre_render_blockrender_block_datarender_block_contextrender_block_this-namerespond_link
相关方法
render_blockrender_block_core_rssrender_block_core_filerender_block_core_blockrender_block_core_coverrender_block_core_image
引入
5.9.0
弃用
-

render_block: 这个过滤钩子用于过滤一个块的渲染的HTML内容。该钩子为开发者提供了修改块的输出的权限,如添加自定义类,改变HTML结构,或添加额外的内容。

过滤单个区块的内容。

$block_content = apply_filters( 'render_block', $block_content, $this->parsed_block, $this );

常见问题

FAQs
查看更多 >