Adding this snippet to the functions.php of your wordpress theme will
increase height of the excerpt field within your post editing screen.
add_action('admin_head', 'excerpt_textarea_height'); function excerpt_textarea_height() { echo' <style type="text/css"> #excerpt{ height:500px; } </style> '; }
No comments:
Post a Comment