Advertisement
bedas

CRED makes duplicate

Sep 2nd, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. /**
  3.   *Duplicate QuickTexts on submit of Original to all secondary langs (for transaltion)
  4.   */
  5.  
  6.     function duplicate_save_data_action($post_id, $form_data){
  7.        
  8.         // Change your CRED Form "ID" accordingly below
  9.         if ($form_data['id']==18){
  10.  
  11.             // Use new WPML API            
  12.             do_action( 'wpml_make_post_duplicates', $post_id );            
  13.         }      
  14.     }    
  15. add_action('cred_save_data', 'duplicate_save_data_action',10,2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement