Changeset 2024654
- Timestamp:
- 02/04/2019 02:24:28 PM (7 years ago)
- Location:
- sermon-manager-for-wordpress/trunk
- Files:
-
- 2 edited
-
includes/admin/class-sm-admin-post-types.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sermon-manager-for-wordpress/trunk/includes/admin/class-sm-admin-post-types.php
r1911118 r2024654 301 301 302 302 // Type filtering. 303 $terms = get_terms( 'wpfc_service_type' ); 303 $terms = get_terms( 304 array( 305 'taxonomy' => 'wpfc_service_type', 306 'hide_empty' => false, 307 ) 308 ); 304 309 $output = ''; 305 310 … … 308 313 309 314 foreach ( $terms as $term ) { 310 $output .= '<option value="' . sanitize_title( $term->name ). '" ';315 $output .= '<option value="' . $term->slug . '" '; 311 316 312 317 if ( isset( $wp_query->query['wpfc_service_type'] ) ) { -
sermon-manager-for-wordpress/trunk/readme.txt
r2024621 r2024654 124 124 ## Changelog ## 125 125 ### 2.15.14 ### 126 * New: Add compatibility for Pro theme 126 127 * Fix: Improve [latest_series] shortcode 127 * New: Add compatibility for Pro theme128 * Fix: Service Type filter in backend not working when slug is different from default 128 129 129 130 ### 2.15.13 ###
Note: See TracChangeset
for help on using the changeset viewer.