Advertisement
maxworkingwell

code for Duong

Aug 26th, 2022
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. // 5. add 1 to wpcf-radio field if drama, movie or special added to subtitle project
  2. add_action('cred_save_data', 'check_parents_data_action', 10, 2 );
  3. function check_parents_data_action($post_id, $form_data){
  4. if ($form_data['id']==41833){
  5. if( isset($_POST['related-drama'])){
  6. update_post_meta( $_POST['related-drama'], 'wpcf-is-there-sp', 1 );
  7. }
  8. if( isset($_POST['related-movie'])){
  9. update_post_meta( $_POST['related-movie'], 'wpcf-is-there-sp', 1 );
  10. }
  11. if( isset($_POST['related-special'])){
  12. update_post_meta( $_POST['related-special'], 'wpcf-is-there-sp', 1 );
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement