自定义域-更高的编辑区域

时间:2012-09-22 作者:All4Gaming

不知道这是否可行,但能否将管理面板中的自定义字段调整为更高?每次要编辑包含大量文本的现有字段时,都必须拉伸文本框,这有点乏味。

1 个回复
SO网友:kaiser

大型»自定义字段«文本区域

很高兴这些都是容易瞄准的目标。包装在一个小插件中:

<?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。

enter image description here

WYSIWG编辑器的全屏(内置)自一段时间以来,WordPress获得了“全屏”模式。只需单击它,文本框就会展开为the whole screen, 这样你就可以不分心地写作了。

enter image description hereenter image description here

结束

相关推荐

当出现错误时,防止wp_login_form()重定向到wp-admin

我已经在我的网站前端使用wp_login_form(). 但是,当用户键入错误的用户名/密码时,他们会被重定向到wp admin登录表单。如何在登录表单上方显示任何错误消息?理想情况下,我不希望用户看到Wordpress管理部分。我试过使用redirect_invalid_login() 胡克,但这似乎不起作用?