对add_filter()
是您要查找的,但要确定特定块,您需要render_block
钩
<?php
add_filter(\'render_block\', function($block_content, $block) {
// Only for Core Code blocks
if(\'core/code\' === $block[\'blockName\']) {
// Add your custom HTML after the block
$block_content = $block_content . \'<div>Test addition</div>\';
}
// Always return the content
return $block_content;
}, 10, 2);
?>
在呈现代码块的任何地方(当前可能是页面、帖子或CPT的前端,但将来可能在其他地方),都会显示添加的代码。