記事の投稿画面で「抜粋」部分の入力欄の高さを変更する

Ads

Code

<?php
add_action('admin_head', 'excerpt_textarea_height');
function excerpt_textarea_height() {
echo'
<style type="text/css">
#excerpt{ height:150px; }
</style>
';
}
?>
view raw gistfile1.aw hosted with ❤ by GitHub

Screen shot

Note

Description CSSを追加して投稿画面で狭い「抜粋」の高さを高くする。
WordPress Ver. 3.3.1
Via