Site Search

Replace with text about search results.
<?php
global $wp_query;
$found = $wp_query->found_posts;
$paged = max( 1, get_query_var('paged') );
$per_page = $wp_query->query_vars['posts_per_page'];
$from = ($paged - 1) * $per_page + 1;
$to = min( $found, $paged * $per_page );
printf( 'Showing %d–%d of %d results', $from, $to, $found );
?>
#brxe-105db2 {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: var(--link-weight);
  color: var(--teal-800);
  margin-top: 1rem;
  margin-bottom: 1rem;
}