Increasing The Categories Selection Height Dynamically In WordPress Admin


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. add_action('admin_head', 'categories_list_height_jquery');
  2.  
  3. function categories_list_height_jquery() {
  4. echo'
  5. <script type="text/javascript">
  6. jQuery(function($){
  7. $("#category-all.tabs-panel").height($("#categorychecklist").height());
  8. });
  9. </script>
  10. ';
  11. }

URL: http://wpcanyon.com/tipsandtricks/increasing-the-categories-selection-height-in-wordpress-admin/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.