woof_qs_get_template_structure
扩展功能:快速搜索
更改结果表格的列标题。
示例:
add_filter('woof_qs_get_template_structure', 'change_title');
function change_title($data) {
if (isset($data['price'])) {
$data['price']['title'] = "Price of the products";
}
return $data;
}

