webberzone.dev Recent

wzkb_github_export_heading_post filter Pro only

wzkb_github_export_heading_post

Fires after a core/heading block is converted.

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

Parameters

TypeNameDescription
string$resultConverted Markdown heading.
array$blockParsed block array (as used for conversion).

Usage

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