Created
September 17, 2013 22:01
-
-
Save anonymous/6601306 to your computer and use it in GitHub Desktop.
This file contains 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
add_filter( 'tribe-events-bar-filters', 'setup_my_field_in_bar', 1, 1 ); | |
public function setup_my_field_in_bar( $filters ) { | |
$filters['tribe-bar-my-field'] = array( 'name' => 'tribe-bar-my-field', | |
'caption' => 'My Field', | |
'html' => '<input type="text" name="tribe-bar-my-field" id="tribe-bar-my-field">' ); | |
return $filters; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment