Skip to content

Instantly share code, notes, and snippets.

@mattradford
Created October 23, 2014 11:06
Show Gist options
  • Save mattradford/86b54ac93e8ff5973aca to your computer and use it in GitHub Desktop.
Save mattradford/86b54ac93e8ff5973aca to your computer and use it in GitHub Desktop.
ACF number field as formatted currency amount
<?php if(get_field('current_donations_total','options')) :
echo '&pound;' . number_format((get_field('current_donations_total','options')), 0, '.', ',');
endif; ?>
@CodeCurosity
Copy link

doesn't work or atleast doesn't work with facetwp.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment