webberzone.dev Recent

wzkb_github_export_code_post filter Pro only

wzkb_github_export_code_post

Fires after a core/code block is converted.

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

Parameters

TypeNameDescription
string$resultConverted fenced code block.
array$blockParsed block array.

Usage

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