mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
7 lines
274 B
Text
7 lines
274 B
Text
add_filter( 'relevanssi_woocommerce_indexing', 'rlv_woocommerce_filter' );
|
|
function rlv_woocommerce_filter( $blocks ) {
|
|
$blocks['outofstock'] = true;
|
|
$blocks['exclude-from-catalog'] = true;
|
|
$blocks['exclude-from-search'] = true;
|
|
return $blocks;
|
|
}
|