Adding Quote Wraps To each item
-
Hi Ive added the Force Quotes on export but is not working below is code added to functions.php and tried with code snippets and does not work
// CSV force quotes add_filter('woe_csv_custom_output_func',function ($custom_output,$handle,$data,$delimiter,$linebreak,$enclosure,$is_header) { foreach($data as $k=>$v) $data[$k] = $enclosure . str_replace($enclosure, $enclosure . $enclosure, $v) . $enclosure; fwrite($handle, join($delimiter, $data). $linebreak ); return true; //stop default fputcsv! }, 10, 7);
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Adding Quote Wraps To each item’ is closed to new replies.