WordPress tip: Increased height of the excerpt field

Simply paste the following code into your functions.php file. Height can be adjusted on line 5.

add_action('admin_head', 'excerpt_textarea_height');
function excerpt_textarea_height() {
    echo'
    <style type="text/css">
        #excerpt{ height:500px; }
    </style>
    ';
}

Thanks to Spyre Studios for the cool hack!

Looking for WordPress hosting? Try WP Web Host. Prices starts at $5/month and you can try it for free!

WordPress tip: Increased height of the excerpt field

Leave a Reply

Your email address will not be published. Required fields are marked *