Remove dashes from all titles in WordPress Search2024/09/05function remove_dashes($text) { if (is_search() && !is_admin()) { $text=str_replace("-"," ",$text); } return $text; } add_filter('the_title', 'remove_dashes');