我在类别编辑器中添加了一个“自定义标题”字段,以便捕获一个关键字友好的标题,该标题可以与类别名称分开使用。它工作得很好,但它显示为类别屏幕的最后一个输入元素。理想情况下,我希望它位于“Name”字段下(或最上面)。这可能吗?
这是我用来将自定义输入字段添加到类别编辑屏幕的代码。。。
if($pagenow == "edit-tags.php" && $_REQUEST[\'action\'] == "edit")
add_filter(\'edit_category_form\', \'my_category_fields\');
function my_category_fields($tag) {
$tag_extra_fields = get_option(MY_CATEGORY_FIELDS);?>
<table class="form-table">
<tr class="form-field">
<th scope="row" valign="top"><label for="categoryTitle">Full Category Title</label></th>
<td><input name="categoryTitle" id="categoryTitle" type="text" size="40" aria-required="false" value="<?php echo $tag_extra_fields[$tag->term_id][\'cat_title\']; ?>" />
<p class="description">The title is optional but will be used in place of the name on the category landing page.</p></td>
</tr>
</table>
<?php
}