Archived topic
Search results as a list
5 replies · Started by Francesco on January 28, 2022
Hi,
I've searched the forum but haven't found anything.
I would like to have the search results as a list.
No columns. No images, no dates, just a list of titles and extracts.
Many thanks.
Hi there,
You can use a block element - content template and assign it to the search result page.
And use this PHP snippet to turn off the columns on search result page:
add_filter( 'option_generate_blog_settings', 'lh_custom_search_results_page_settings' );
function lh_custom_search_results_page_settings( $options ) {
if ( is_search() ) {
$options['column_layout'] = false;
}
return $options;
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Hi Ying,
many thanks for your answer.
I have also added
$options['date'] = false;
$options['author']= false;
What should I write to prevent the featured image from being displayed?
Many thanks.
Got it. Many thanks.
No problem :)