Sacconi69

taxonomy field intro-de

Apr 1st, 2024
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. add_action( 'intro_edit_form_fields', "intro_add_term_field");
  2.  
  3. function intro_add_term_field( $term ){
  4. $intro = get_term_meta( $term->term_id, 'intro_de', true );
  5. echo '<tr class="form-field">
  6. <th scope="row"><label for="intro_de">Nome tedesco</label></th>
  7. <td><input type="text" name="intro_de" value="'.$intro.'" />
  8. <p class="description">Nome del termine in tedesco</p></td>
  9. </tr>';
  10. }
  11.  
  12. add_action( 'saved_intro', 'update_intro');
  13. function update_intro ( $term_id ) {
  14. update_term_meta( $term_id, 'intro_de', sanitize_text_field ( $_POST['intro_de'] ) );
  15.  
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment