Sacconi69

//EDIT TASSONOMIA TIPOLOGIA-EN

Sep 27th, 2024
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. //EDIT TASSONOMIA TIPOLOGIA-EN
  2.  
  3.  
  4. add_action( 'tipologia_edit_form_fields', "tipologia_add_term_field_en");
  5.  
  6. function tipologia_add_term_field_en ( $term ){
  7. $tipologia = get_term_meta( $term->term_id, 'function_tipologia_en', true );
  8. echo '<tr class="form-field">
  9. <th scope="row"><label for="function_tipologia_en">Nome inglese</label></th>
  10. <td><input type="text" name="function_tipologia_en" value="'.$tipologia.'" />
  11. <p class="description">Nome del termine in inglese</p></td>
  12. </tr>';
  13. }
  14.  
  15. add_action( 'saved_tipologia', 'update_tipologia');
  16. function update_tipologia_en ( $term_id ) {
  17. update_term_meta( $term_id, 'function_tipologia_en', sanitize_text_field ( $_POST['function_tipologia_en'] ) );
  18.  
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment