SearchWP

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
Key Type Value
post \WP_Post The post being indexed
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' );

How to use this code