Skip to content

Instantly share code, notes, and snippets.

@LinzardMac
Created November 25, 2015 22:06
Show Gist options
  • Save LinzardMac/9593a71fc28278f26815 to your computer and use it in GitHub Desktop.
Save LinzardMac/9593a71fc28278f26815 to your computer and use it in GitHub Desktop.
function alter_my_meta( $check, $object_id, $meta_key, $meta_value, $prev_value )
{
// Avoid infinite running of filter
remove_filter( current_filter(), __FUNCTION__ );
// Do whatever to alter the meta value
$meta_value = strtolower( $meta_value );
// Update with new value
update_post_meta( $object_id, $meta_key, $meta_value, $prev_value );
// Return something else than null
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment