Excerpt only generated for first 10 posts
-
If I search and a post shows up in the first ten results, it always has an excerpt. If it shows up after the first ten results, no excerpt is displayed.
Here is my query on the search page:
global $query; $search_results = $query; $search_results->query_vars['s'] = get_query_var('s'); $search_results->query_vars['posts_per_page'] = -1; relevanssi_do_query($search_results);then I’m looping through the posts:
foreach($search_results->posts as $key => $result) { $post = get_post($result->ID); include('inc--search-preview.php'); }In
inc--search-preview.phpI’m usingget_the_excerpt()to get the excerpt. I have also triedrelevanssi_the_excerpt()and the result was the same.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Excerpt only generated for first 10 posts’ is closed to new replies.