Wordpress Increase height of the excerpt field – WordPress December 21, 2011 Pramod T P Leave a comment Paste the following code in functions.php add_action('admin_head', 'excerpt_textarea_height'); function excerpt_textarea_height() { echo' <style type="text/css"> #excerpt{ height:500px; } </style> '; }