Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Last active August 10, 2016 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ControlledChaos/1a495155591d6165109776ad9333cea0 to your computer and use it in GitHub Desktop.
Save ControlledChaos/1a495155591d6165109776ad9333cea0 to your computer and use it in GitHub Desktop.
Limit the number of characters allowed in the post/page title field.

Limit Title Characters

WordPress Snippet

<?php function ccd_limit_title_chars() { ?>
<!-- Change maxLength number to desired limit -->
<script>jQuery( 'input#title' ).attr( 'maxlength', 36 );</script>
<?php } add_action( 'admin_footer', 'ccd_limit_title_chars' ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment