Advertisement
miriamdepaula

WordPress: add maxlength to post/page/custom post type

Apr 24th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2. //add maxlength to post/page/custom post type title field
  3. add_action('admin_footer', 'add_maxlength_to_post_title');
  4. function add_maxlength_to_post_title(){ ?>
  5.    
  6.     <script type="text/javascript">
  7.         jQuery( function($){
  8.             $('input#title').attr('maxlength', 30);
  9.         });
  10.     </script>
  11.        
  12. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement