Recent

wzkb_github_import_heading_prefilterPro only

wzkb_github_import_heading_pre

Fires before a heading element is converted to a heading block. Return a non-empty string (different from $outer_html) to use as the final block HTML.

Type: filter
Since: 3.1.0
Source: includes/github/class-content-importer.php line 737

Parameters

Type Name Description
string $outer_html Outer HTML of the element (before class mutation).
\DOMElement $node The heading DOM element.

Usage

add_filter( 'wzkb_github_import_heading_pre', function($outer_html, $node) {
    // ...
    return $outer_html;
} );