webberzone.dev Recent

wzkb_github_export_paragraph_post filter Pro only

wzkb_github_export_paragraph_post

Fires after a core/paragraph block is converted.

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

Parameters

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

Usage

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