searchwp\source\post\attributes\content\do_blocks
Since: 4.0.0
Table of Contents
Control whether SearchWP processes block editor (Gutenberg) blocks prior to indexing.
Parameters
Type | Parameter | Default | Since | ||||||
---|---|---|---|---|---|---|---|---|---|
Boolean | $enabled |
true |
4.0.0 |
||||||
Array |
$args
|
4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Disable block parsing during indexing
<?php | |
// Disable Gutenberg block parsing during SearchWP indexing. | |
add_filter( 'searchwp\source\post\attributes\content\do_blocks', '__return_false' ); |