Guest User

Untitled

a guest
May 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. function save_online_shop($post_id) {
  2.  
  3. if(get_post_meta($post_id, '', true)) {
  4. if(get_post_meta($post_id, 'wpcf-proprty_online', false)) {
  5. if(get_post_meta($post_id, 'wpcf-proprty_online', true) == 'y')
  6. {
  7. wp_set_post_terms( $post_id, 75, 'region' );
  8. }
  9. }
  10. }
  11. }
  12.  
  13. add_action('save_post_listing', 'save_online_shop', 999999);
Add Comment
Please, Sign In to add comment