function exclude_wp_ulike_from_search($content){if (is_search()){// Remove WP ULike inline styles $content=preg_replace('/\.wp_ulike_btn.*?; \}/s','',$content)}return $content}add_filter(the_content,exclude_wp_ulike_from_search,20);