[Resolved] How to include medias from posts in search result page

Home Forums Support [Resolved] How to include medias from posts in search result page

Home Forums Support How to include medias from posts in search result page

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #792970
    Andy Brunner

    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

    #792988
    Tom
    Lead Developer
    Lead Developer

    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 ๐Ÿ™‚

    #792998
    Andy Brunner

    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

    #793225
    Tom
    Lead Developer
    Lead Developer

    You’re welcome! Glad I could help ๐Ÿ™‚

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.