我可以回答最后一部分:“我还希望摘录字段位于内容字段之上。这一切都可能吗?”
将任何内容移到内容字段上方的唯一方法是通过JavaScript——上面没有php挂钩或过滤器。这是一种蹩脚的解决方法,因为在字段重新排序时,通常可以(直观地)看到跳转。但这是唯一的办法。
jQuery(document).ready( function($) {
// On DOM ready move the excerpt field above the WYSIWYG field
if( document.getElementById(\'postdiv\') && document.getElementById(\'postexcerpt\') ) {
jQuery(\'#postexcerpt\').insertBefore(\'#postdiv\');
} else if( document.getElementById(\'postdivrich\') && document.getElementById(\'postexcerpt\') ) {
jQuery(\'#postexcerpt\').insertBefore(\'#postdivrich\');
}
});