custom field - edit_tag_form_fields is depricated but tag_edit_form_fields doesn't work

admin2025-03-20  2

I need to create, retrieve, update and display a custom field in Wordpress tags. This code works for displaying the custom field, but its deprecated.

function tag_edit_form_fields ( $term ) {

?>
    <tr class="form-field">
        <th scope="row"><label for="term-colorpicker">Custom Field: </label></th>
        <td>
            <input type="custom_field" name="_custom_field" value=" <?php echo $custom_value; ?>" id="term-custom_term" />
            <p class="description">This is a custom field.</p>
        </td>
    </tr>

    <?php
 }
add_action('edit_tag_form_fields','tag_edit_form_fields');

Using the new function {$taxonomy}_edit_form_fields as tag_edit_form_fields doesn't seem to work.

I need to create, retrieve, update and display a custom field in Wordpress tags. This code works for displaying the custom field, but its deprecated.

function tag_edit_form_fields ( $term ) {

?>
    <tr class="form-field">
        <th scope="row"><label for="term-colorpicker">Custom Field: </label></th>
        <td>
            <input type="custom_field" name="_custom_field" value=" <?php echo $custom_value; ?>" id="term-custom_term" />
            <p class="description">This is a custom field.</p>
        </td>
    </tr>

    <?php
 }
add_action('edit_tag_form_fields','tag_edit_form_fields');

Using the new function {$taxonomy}_edit_form_fields as tag_edit_form_fields doesn't seem to work.

Share Improve this question asked May 24, 2020 at 15:49 FreshClicksFreshClicks 715 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

While adding the tags to this stack exchange question, I added tags and the hint showed up as post_tag.

So, I tried

add_action('post_tag_edit_form_fields','tag_edit_form_fields');

and it works!

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1742404967a212038.html

最新回复(0)