Do you want to limit the characters for your category description in WordPress? WordPress allows you to add descriptions for your categories, which is usually displayed on your archive pages. Here’s the code snippet that helps you limit the characters in your category description with the WordPress admin panel.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin.
Adding this snippet to the functions.php of your wordpress theme will truncate the description displayed within the categories admin panel to 150 characters. Change the number 150 on line 09 to adjust the number of characters for the category description.
add_action( 'admin_head-edit-tags.php', 'admin_edit_tags' ); function admin_edit_tags() { add_filter( 'get_terms', 'admin_trim_category_description', 10, 2 ); } function admin_trim_category_description( $terms, $taxonomies ) { if( 'category' != $taxonomies[0] ) return $terms; foreach( $terms as $key=>$term ) $terms[$key]->description = substr( $term->description, 0, 150 ); return $terms; }
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly copy / paste code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 62 best free WordPress blog themes or 7 best WordPress contact form plugins.
I tried inserting a “more” break in Category description but this does not work. Would it be possible to have your snippet “hide” somehow extra text and make it viewable when clicked on?
Hi how can this be done to the post description?
After 2 hrs search – you are my hero!!!
Glad it helped!
Thank you for this. I wonder if it is possible to do the same for the title of the post in the admin panel?
Hi Torbjorn ill try and post a snippet soon that will do just that.
Thanks Kevin,
I am a bit of a WordPress noob and was wondering how the snippet could be altered to truncate custom taxonomy descriptions?
Sorry Kevin, just figured that out. Silly me.
No problem Mike glad to hear you got things working.