webberzone.dev Recent

wzkb_github_export_heading_pre filter Pro only

wzkb_github_export_heading_pre

Fires before a core/heading block is converted.

Return a string to use as the final Markdown output (bypasses conversion). Return a modified array to adjust the block data used for conversion.

Type: filter
Since: 3.1.0
Source: includes/github/class-content-exporter.php line 260

Parameters

TypeNameDescription
array$blockParsed block array.

Usage

add_filter( 'wzkb_github_export_heading_pre', function($block) {
    // ...
    return $block;
} );