• this just a little snippet i added to format the numbers in my posts:

    preg_match('/([0-9]+)/', $output, $matches);
    foreach ($matches as $match) {
    $output = str_replace($match, number_format($match), $output);
    }

    i stuck it in the wptexturize() function, right before:
    return $output;

Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘format numbers in post’ is closed to new replies.