Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created June 11, 2013 08:30
Show Gist options
  • Save pascalmaddin/5755300 to your computer and use it in GitHub Desktop.
Save pascalmaddin/5755300 to your computer and use it in GitHub Desktop.
WordPress - Increase the excerpt field height
<?php
add_action('admin_head', 'excerpt_textarea_height');
function excerpt_textarea_height() {
echo'
<style type="text/css">
#excerpt{ height:500px; }
</style>
';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment