webberzone.dev Recent

wzkb_github_export_list_post filter Pro only

wzkb_github_export_list_post

Fires after a core/list block is converted.

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

Parameters

TypeNameDescription
string$resultConverted Markdown list.
array$blockParsed block array.

Usage

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