Changeset 3254168
- Timestamp:
- 03/11/2025 03:21:59 PM (13 months ago)
- Location:
- spiffy-calendar/trunk
- Files:
-
- 4 edited
-
includes/admin/custom-posts.php (modified) (2 diffs)
-
includes/admin/update-cleanup.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
spiffy-calendar.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spiffy-calendar/trunk/includes/admin/custom-posts.php
r3253386 r3254168 682 682 unset ($columns['description']); 683 683 $columns['color'] = __( 'Color', 'spiffy-calendar' ); 684 $columns['cat_id'] = __( 'ID', 'spiffy-calendar' ); 684 685 return $columns; 685 686 } … … 689 690 $meta = esc_html (get_term_meta($term_id, 'color', true)); 690 691 return ( '<div style="background-color:'.$meta.';width:1em;"> </div>' ); 692 } 693 if ( 'cat_id' === $column_name ) { 694 return ( $term_id ); 691 695 } 692 696 } -
spiffy-calendar/trunk/includes/admin/update-cleanup.php
r3253386 r3254168 224 224 global $wpdb, $spiffy_calendar, $spiffycal_custom_fields; 225 225 226 // Quit if posts already exist 227 $posts = get_posts ( array ( 'post_type' => 'spiffy_event' ) ); 228 if ( $posts) return; 229 226 230 // Create categories 227 231 $sql = "SELECT * FROM " . $wpdb->get_blog_prefix().WP_SPIFFYCAL_CATEGORIES_TABLE; -
spiffy-calendar/trunk/readme.txt
r3253386 r3254168 4 4 Requires at least: 5.3 5 5 Tested up to: 6.8 6 Stable tag: 5.0. 06 Stable tag: 5.0.1 7 7 License: GPLv2 8 8 Tags: calendar,event,responsive,recurring,block … … 170 170 == Changelog == 171 171 172 = 5.0.1 (March 11, 2025) = 173 174 * Fix: add check to prevent post conversion more than one time 175 * New: display category ID in the category admin panel 176 172 177 = 5.0.0 (March 10, 2025) = 173 178 174 179 * MAJOR UPDATE: events are now stored as custom post types. When upgrading from an existing installation, old events will be automatically converted to the new format. 175 * After the plugin update you need to update your selected featured event if you use a featured event widget 180 * After the plugin update you need to update your selected featured event if you use a featured event widget. You also need to update the category ID if you filter any widgets or shortcodes by category. 176 181 * New: events now have standard post features such as quick edit, bulk edit and trashbin 177 182 * New: categories now have standard category features such as multiple categories and quick edit -
spiffy-calendar/trunk/spiffy-calendar.php
r3253386 r3254168 4 4 Plugin URI: http://www.spiffyplugins.ca/spiffycalendar 5 5 Description: A full featured, simple to use Spiffy Calendar plugin for WordPress that allows you to manage and display your events and appointments. 6 Version: 5.0. 06 Version: 5.0.1 7 7 Author: Spiffy Plugins 8 8 Author URI: http://spiffyplugins.ca
Note: See TracChangeset
for help on using the changeset viewer.