crp_index_meta_keys
Filters meta keys indexed into CRP content.
Type: filter
Since: 4.2.0
Source: includes/custom-tables/class-sync-manager.php line 471
Parameters
| Type | Name | Description |
|---|---|---|
string[] | $meta_keys | Meta keys. |
int | $post_id | Post ID. |
Usage
add_filter( 'crp_index_meta_keys', function($meta_keys, $post_id) {
// ...
return $meta_keys;
} );