How to show always 'In Stock products only' in the search results
- 現在の WordPress テーマの functions.php ファイルを開きます
- 次のコードを配置:
add_filter('woof_get_request_data', function ($data){ $data['stock'] = 'instock'; return $data; });
add_filter('woof_get_request_data', function ($data){
$data['stock'] = 'instock';
return $data;
});