Changeset 3483158
- Timestamp:
- 03/15/2026 03:01:55 PM (2 weeks ago)
- Location:
- revora
- Files:
-
- 2 edited
-
tags/1.0.1/includes/class-shortcodes.php (modified) (1 diff)
-
trunk/includes/class-shortcodes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
revora/tags/1.0.1/includes/class-shortcodes.php
r3483145 r3483158 189 189 $db = new Revora_DB(); 190 190 $categories = $db->get_categories(); 191 $settings = get_option( 'revora_settings' ); 191 $settings = wp_parse_args( get_option( 'revora_settings', array() ), array( 192 'primary_color' => '#4566f9', 193 'star_color' => '#fbbf24', 194 ) ); 192 195 $has_category = ! empty( $atts['category'] ); 193 196 -
revora/trunk/includes/class-shortcodes.php
r3483149 r3483158 189 189 $db = new Revora_DB(); 190 190 $categories = $db->get_categories(); 191 $settings = get_option( 'revora_settings' ); 191 $settings = wp_parse_args( get_option( 'revora_settings', array() ), array( 192 'primary_color' => '#4566f9', 193 'star_color' => '#fbbf24', 194 ) ); 192 195 $has_category = ! empty( $atts['category'] ); 193 196
Note: See TracChangeset
for help on using the changeset viewer.