I am utilizing the next code to create a customized metabox on a customized taxonomy web page.
$term_filter_name_edit = $sort . '_edit_form_fields';
add_action($term_filter_name_edit, 'box_term', 1000, 1 );
operate box_term() {
echo 'Take a look at output';
}
Nevertheless, this outputs Take a look at output
earlier than the default time period fields. I would like it to output after the default time period fields.
How can I obtain this?
—
Curiously, utilizing _add_form_fields
outputs after the fields on the add web page, however utilizing _edit_form_fields
appears to output earlier than.