updated   : May 15, 2012
we now have 588 snippets
By : , on November 14, 2011 9:00 am

Increase the excerpt field height

wordpress snippet

Adding this snippet to the functions.php of your wordpress theme will increase height of the excerpt field within your post editing screen.

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