Skip to content

Instantly share code, notes, and snippets.

@alexander-young
Created December 16, 2020 00:00
Show Gist options
  • Save alexander-young/c5fc9f791a710c7154c518661068aeb1 to your computer and use it in GitHub Desktop.
Save alexander-young/c5fc9f791a710c7154c518661068aeb1 to your computer and use it in GitHub Desktop.
<?php
add_post_meta( 5, 'fruit', 'orange', false );
add_post_meta( 5, 'fruit', 'grape', false );
add_post_meta( 5, 'fruit', 'apple', false );
add_post_meta( 5, 'veggie', 'carrot', false );
print_r(get_post_meta( 5, 'fruit', false ));
delete_post_meta( 5, 'fruit', 'orange' );
update_post_meta( 5, 'fruit', 'orange', 'grape' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment