Home Forums WoodMart support forum Search Excerpt Length

Search Excerpt Length

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #529937

    ChristopherM
    Participant

    On Line 194 of content.php, this is where the post excerpt is called for the search results page. I want to change the excerpt length as the product excerpts are far too long (see screenshot). I’ve tried hardcoding it into that line and I’ve tried using a function in the functions.php file, but nothing allows me to change the excerpt length.

    function my_excerpt_length( $length ) {
    $length = 20;
    return $length;
    }
    add_filter( ‘excerpt_length’, ‘my_excerpt_length’, PHP_INT_MAX );

    Please assist.

    Attachments:
    You must be logged in to view attached files.
    #530038

    ChristopherM
    Participant

    Resolved, wrote some custom PHP for it.

    #530209

    Luke Nielsen
    Keymaster

    Hello,

    Glad that you found the solution.

    Always remember that you can reach out to us with any questions you may have.

    Have a good day!

    Kind Regards

Viewing 3 posts - 1 through 3 (of 3 total)

The topic ‘Search Excerpt Length’ is closed to new replies.