Function to remove or sanitize your money text meta field values.
1 2 3 4 |
function sanitize_price($value) { $value = preg_replace('/[\$,]/', '', $value); return $value; } |
Function to remove or sanitize your money text meta field values.
1 2 3 4 |
function sanitize_price($value) { $value = preg_replace('/[\$,]/', '', $value); return $value; } |