I want to customize the search result page,
order positioning of image, title, text, number of characters.
Which file do I have to customize?
<?php the_excerpt(); ?>
<?php echo mb_substr(get_the_excerpt(), 0, 150); ?>
Do you have any cache plugin activated? Because even if i remove the "summary" section - it's still visible on your search resulsts page: ...
// Change Excerpt length
function gavern_excerpt_length( $length ) {
global $gk_tpl;
return get_option($gk_tpl->name . '_excerpt_len', 55);
}
add_filter( 'excerpt_length', 'gavern_excerpt_length', 999 );
<?php get_template_part( 'layouts/content.post.featured' ); ?>