Code-Snippets-Functions/Execute a function on a child site/Advanced Woo Search/exclude-product-short-description-index.txt

4 lines
147 B
Text

add_filter('aws_indexed_excerpt', 'my_aws_indexed_excerpt', 10, 3 );
function my_aws_indexed_excerpt( $excerpt, $id, $product ) {
return '';
}