Archived topic
Having more excerpt characters in featured box than the other box ?
3 replies · Started by jmarc on January 9, 2023
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
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/
David : you should be "President of the United States" !
Thank's a lot...
Marc
Haha... not sure if thats a compliment, but ill take it as one :)
Glad to be of help