π΅
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( '{taxonomy}_add_form_fields', 'add_feature_group_field', 10, 2 ); | |
| function add_feature_group_field($taxonomy) { | |
| global $meta_name; | |
| ?> | |
| <div class="form-field"> | |
| <label for="meta_name">Meta Name</label> | |
| <input name="meta_name" id="meta_name" type="text" value="<?php echo $meta_name; ?>" size="40" aria-required="true"> |
NewerOlder