Archived topic
How to include medias from posts in search result page
3 replies · Started by Andy Brunner on January 26, 2019
In the search results, I would like to show not only the text but also any included media, such as pictures or the new audio player.
Is this possible with GP Premium?
Thanks for this great WP plugin.
Andy
Hi there,
Try this function:
add_filter( 'generate_show_excerpt', function( $show ) {
if ( is_search() ) {
return false;
}
return $show;
} );
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know :)
Tom,
You support ist - as always - just incredibly fast and professional! I have tried your solution and it works just fine.
Perfect!
Thank you for your outstanding work and support.
Andy
You're welcome! Glad I could help :)