Increase height of the excerpt field – WordPress

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>
    ';
}

Leave a Reply

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