Home › Forums › Support › Having more excerpt characters in featured box than the other box ? This topic has 3 replies, 2 voices, and was last updated 3 years, 3 months ago by David. Viewing 4 posts - 1 through 4 (of 4 total) Author Posts January 9, 2023 at 8:01 am #2489108 jmarc Hello I wonder if it’s possible to have for example :20 characters in the featured box in frontpage and 10 for the others box… I give you my URL in private so you can see what I want. Thank you for your help MArc January 9, 2023 at 9:12 am #2489179 DavidStaff Customer Support Hi there, try adding this PHP Snippet to your site: add_filter( 'excerpt_length', 'tu_featured_excerpt_length', 50 ); function tu_featured_excerpt_length( $length ) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; global $wp_query; if ( 1 == $paged && 0 == $wp_query->current_post ) { return 100; // First post } return $length; } How to add PHP: https://docs.generatepress.com/article/adding-php/ January 9, 2023 at 9:29 am #2489202 jmarc David : you should be “President of the United States” ! Thank’s a lot… Marc January 10, 2023 at 1:21 am #2489760 DavidStaff Customer Support Haha… not sure if thats a compliment, but ill take it as one 🙂 Glad to be of help Author Posts Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In