Created
January 28, 2016 07:04
-
-
Save elimn/8e3a7c7f362ec4792600 to your computer and use it in GitHub Desktop.
MT | TEC | Remove placeholder HTML attribute from Tribe Bar elements
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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