Skip to content

Instantly share code, notes, and snippets.

@codersaiful
Last active December 23, 2021 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codersaiful/c46a108f02dee23e44fee33f352e2ea3 to your computer and use it in GitHub Desktop.
Save codersaiful/c46a108f02dee23e44fee33f352e2ea3 to your computer and use it in GitHub Desktop.
<?php
function ca_ua_remove_placeholder( $WPT_DATA ){
$WPT_DATA['search_select_placeholder'] = "Choose your text";
//To hide placeholder, leave empty value
//$WPT_DATA['search_select_placeholder'] = "";
return $WPT_DATA;
}
add_filter('wpto_localize_data', 'ca_ua_remove_placeholder');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment