大型»自定义字段«文本区域
很高兴这些都是容易瞄准的目标。包装在一个小插件中:
<?php
! defined( \'ABSPATH\' ) AND exit;
/* Plugin Name: (#65922) »kaiser« Bigger custom field textarea */
function wpse65922_big_customfield_textarea()
{
?>
<style type="text/css">
#the-list textarea,
#newmeta textarea {
height: 200px;
}
</style>
<?php
}
add_action( \'admin_head-post.php\', \'wpse65922_big_customfield_textarea\' );
add_action( \'admin_head-post-new.php\', \'wpse65922_big_customfield_textarea\' );
这针对现有的和新的自定义字段textareas。
WYSIWG编辑器的全屏(内置)自一段时间以来,WordPress获得了“全屏”模式。只需单击它,文本框就会展开为the whole screen, 这样你就可以不分心地写作了。