On epsilon theme it is this line on main.php
<?php eps_get_latest_searches(20) ?>
<?php $i = 0; ?>
<?php if(osc_count_latest_searches() > 0) { ?>
<div class="latest-search">
<?php while(osc_has_latest_searches()) { ?>
<a href="<?php echo osc_search_url(array('page' => 'search', 'sPattern' => osc_esc_html(osc_latest_search_text()))); ?>" data-text="<?php echo osc_esc_html(osc_latest_search_text()); ?>"><?php echo osc_highlight(osc_latest_search_text(), 18); ?></a>
<?php $i++; if($i > 20) { break; } ?>
<?php } ?>
</div>
<?php } ?
Is working correct but is show me a lot of words and some are not nice , not at all and for SEO and google can be very bad.
How I can avoid all this word to not be vizible to be blocked.
Thanks.