Skip to content

Instantly share code, notes, and snippets.

@elimn
Created January 28, 2016 07:04
Show Gist options
  • Select an option

  • Save elimn/8e3a7c7f362ec4792600 to your computer and use it in GitHub Desktop.

Select an option

Save elimn/8e3a7c7f362ec4792600 to your computer and use it in GitHub Desktop.
MT | TEC | Remove placeholder HTML attribute from Tribe Bar elements
<?php
/*
* Remove placeholder HTML attribute from Tribe Bar elements
*/
function tribe_bar_remove_placeholder( $filters ) {
foreach ( $filters as $fkey => $fval ) {
$filters[$fkey]['html'] = preg_replace('/placeholder="[^"]*"/', '', $filters[$fkey]['html']);
}
return $filters;
}
add_filter( 'tribe-events-bar-filters', 'tribe_bar_remove_placeholder', 100, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment