Changeset 3438451
- Timestamp:
- 01/13/2026 09:43:17 AM (3 months ago)
- Location:
- current-post-shortcode
- Files:
-
- 2 edited
- 1 copied
-
tags/1.2.2 (copied) (copied from current-post-shortcode/trunk)
-
tags/1.2.2/includes/frontend/shortcode.php (modified) (1 diff)
-
trunk/includes/frontend/shortcode.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
current-post-shortcode/tags/1.2.2/includes/frontend/shortcode.php
r3436990 r3438451 44 44 45 45 /* 46 * If meta value not exists , return default value46 * If meta value not exists or empty, return default value 47 47 */ 48 if ( !isset( $meta_value ) ) {48 if ( empty( $meta_value ) ) { 49 49 return $atts['default']; 50 50 } -
current-post-shortcode/trunk/includes/frontend/shortcode.php
r3436990 r3438451 44 44 45 45 /* 46 * If meta value not exists , return default value46 * If meta value not exists or empty, return default value 47 47 */ 48 if ( !isset( $meta_value ) ) {48 if ( empty( $meta_value ) ) { 49 49 return $atts['default']; 50 50 }
Note: See TracChangeset
for help on using the changeset viewer.