Guest User

Untitled

a guest
Mar 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. add_action( 'wp_insert_post', 'wpse128767_add_meta' );
  3. function wpse128767_add_meta( $post_id ) {
  4. // do something here, add post meta for example
  5. add_post_meta( $post_id, 'key', 'value' );
  6. }
Add Comment
Please, Sign In to add comment