Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
  • Loading branch information
dshanske committed Dec 17, 2023
1 parent 8854459 commit 4d5e6e2
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 104 deletions.
2 changes: 1 addition & 1 deletion includes/class-post-venue.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public static function venue_types_dropdown( $post_type, $which ) {
if ( isset( $_REQUEST['venue_type'] ) ) {
$selected = sanitize_text_field( $_REQUEST['venue_type'] );
}
$list = array( '' => __( 'All', 'simple-location' ) );
$list = array( '' => __( 'All Types', 'simple-location' ) );
foreach ( get_terms( 'venue_type', array( 'hide_empty' => false ) ) as $type ) {
$list[ $type->slug ] = $type->name;
}
Expand Down
Loading

0 comments on commit 4d5e6e2

Please sign in to comment.