更改添加新帖子输入框的高度

时间:2014-06-03 作者:Mark Devlin

“添加新帖子”页面上的文本区域框对于我的应用程序来说太高。我想把它改成260px高。但是,该样式是嵌入的。在不更改原始文件的情况下,更改它的最佳方法是什么?

1 个回复
最合适的回答,由SO网友:Ezra John Alvarez 整理而成

EDIT VIA COMMENTS

<?php 
function add_styles() {
?> 
   <style type="text/css"> 
      .wp-editor-container { 
          clear: both; 
          height: 246px !important; 
      } 
   </style> 
<?php }

add_action(\'wp_head\', \'add_styles\'); 
结束