Skip to content

Instantly share code, notes, and snippets.

@wpscholar
Created August 9, 2014 13:26
Show Gist options
  • Save wpscholar/542bbd0ac878a571844c to your computer and use it in GitHub Desktop.
Save wpscholar/542bbd0ac878a571844c to your computer and use it in GitHub Desktop.
Validate postal code example
<?php
$postal_code = $_POST['postal_code'];
if ( preg_match( '/[0-9]{5}/', $postal_code ) ) {
update_post_meta( get_the_ID(), 'postal_code', $postal_code );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment