Bots using internal wordpress search

I suggest using a security plugin which will do everything for you. Like iThemes Security Bans troublesome user agents, bots and other hosts https://wordpress.org/plugins/better-wp-security/

Return All Tags from Search Result in Separate List

Try this one: Just add the function in your theme functions file and then in your (search) template, add echo get_query_terms_list(); to display the terms list. But do take note, this is intended only for the current search results, i.e. on the same page. function get_query_terms_list( $taxonomy = ‘post_tag’, $sep = ‘, ‘ ) { … Read more