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

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

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!

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742404966a4437659.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信