Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //EDIT TASSONOMIA TIPOLOGIA-EN
- add_action( 'tipologia_edit_form_fields', "tipologia_add_term_field_en");
- function tipologia_add_term_field_en ( $term ){
- $tipologia = get_term_meta( $term->term_id, 'function_tipologia_en', true );
- echo '<tr class="form-field">
- <th scope="row"><label for="function_tipologia_en">Nome inglese</label></th>
- <td><input type="text" name="function_tipologia_en" value="'.$tipologia.'" />
- <p class="description">Nome del termine in inglese</p></td>
- </tr>';
- }
- add_action( 'saved_tipologia', 'update_tipologia');
- function update_tipologia_en ( $term_id ) {
- update_term_meta( $term_id, 'function_tipologia_en', sanitize_text_field ( $_POST['function_tipologia_en'] ) );
- }
Advertisement
Add Comment
Please, Sign In to add comment