Changeset 3017943
- Timestamp:
- 01/05/2024 10:54:36 PM (2 years ago)
- Location:
- weaverx-theme-support
- Files:
-
- 6 edited
- 1 copied
-
tags/6.4 (copied) (copied from weaverx-theme-support/trunk)
-
tags/6.4/includes/wvrx-ts-widgets.php (modified) (1 diff)
-
tags/6.4/readme.txt (modified) (2 diffs)
-
tags/6.4/weaverx-ts.php (modified) (2 diffs)
-
trunk/includes/wvrx-ts-widgets.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/weaverx-ts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
weaverx-theme-support/tags/6.4/includes/wvrx-ts-widgets.php
r2891913 r3017943 84 84 $text = get_post_meta(get_the_ID(),'wvrx_ts_pp_text',true); 85 85 86 if (empty($title) && empty($text)) 87 {return;} 86 if (empty($title) && empty($text)) { 87 return; 88 } 88 89 89 90 echo $before_widget; 90 if ( !empty( $title ) ) { echo $before_title . $title . $after_title; } 91 echo do_shortcode($text); 91 if ( !empty( $title ) ) { 92 echo $before_title . wp_kses_post($title) . $after_title; 93 } 94 echo do_shortcode(wp_kses_post($text)); 92 95 echo $after_widget; 93 96 } -
weaverx-theme-support/tags/6.4/readme.txt
r2961795 r3017943 11 11 Requires at least: 6.0 12 12 Requires PHP: 7.2 13 Tested up to: 6. 314 Stable tag: 6. 3.113 Tested up to: 6.4 14 Stable tag: 6.4 15 15 16 16 A useful shortcode and widget collection for Weaver Xtreme … … 76 76 77 77 == ChangeLog = 78 = 6.4 = 79 * Update: WP 6.4 compatibility 80 * Tweak: Text Widge output formatting 81 78 82 = 6.3.1 = 79 83 * Tweak: Additional Multisite Super Admin validation -
weaverx-theme-support/tags/6.4/weaverx-ts.php
r2961795 r3017943 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 6. 3.18 Version: 6.4 9 9 License: GPL V3 10 10 Requires PHP: 7.2 11 11 Requires at least: 6.0 12 Tested up to: 6. 313 Stable tag: 6. 3.112 Tested up to: 6.4 13 Stable tag: 6.4 14 14 15 15 Weaver Xtreme Theme Support 16 16 17 Copyright (C) 2014-202 3Bruce E. Wampler - [email protected]17 Copyright (C) 2014-2024 Bruce E. Wampler - [email protected] 18 18 19 19 This program is free software: you can redistribute it and/or modify … … 54 54 strpos($theme, '/weaver-xtreme-5') !== false )) { // only load if Weaver Xtreme is the theme 55 55 56 define('WVRX_TS_VERSION', '6. 3.1');56 define('WVRX_TS_VERSION', '6.4'); 57 57 define('WVRX_TS_PAGEBUILDERS', true); 58 58 -
weaverx-theme-support/trunk/includes/wvrx-ts-widgets.php
r2891913 r3017943 84 84 $text = get_post_meta(get_the_ID(),'wvrx_ts_pp_text',true); 85 85 86 if (empty($title) && empty($text)) 87 {return;} 86 if (empty($title) && empty($text)) { 87 return; 88 } 88 89 89 90 echo $before_widget; 90 if ( !empty( $title ) ) { echo $before_title . $title . $after_title; } 91 echo do_shortcode($text); 91 if ( !empty( $title ) ) { 92 echo $before_title . wp_kses_post($title) . $after_title; 93 } 94 echo do_shortcode(wp_kses_post($text)); 92 95 echo $after_widget; 93 96 } -
weaverx-theme-support/trunk/readme.txt
r2961795 r3017943 11 11 Requires at least: 6.0 12 12 Requires PHP: 7.2 13 Tested up to: 6. 314 Stable tag: 6. 3.113 Tested up to: 6.4 14 Stable tag: 6.4 15 15 16 16 A useful shortcode and widget collection for Weaver Xtreme … … 76 76 77 77 == ChangeLog = 78 = 6.4 = 79 * Update: WP 6.4 compatibility 80 * Tweak: Text Widge output formatting 81 78 82 = 6.3.1 = 79 83 * Tweak: Additional Multisite Super Admin validation -
weaverx-theme-support/trunk/weaverx-ts.php
r2961795 r3017943 6 6 Author: wpweaver 7 7 Author URI: http://weavertheme.com/about/ 8 Version: 6. 3.18 Version: 6.4 9 9 License: GPL V3 10 10 Requires PHP: 7.2 11 11 Requires at least: 6.0 12 Tested up to: 6. 313 Stable tag: 6. 3.112 Tested up to: 6.4 13 Stable tag: 6.4 14 14 15 15 Weaver Xtreme Theme Support 16 16 17 Copyright (C) 2014-202 3Bruce E. Wampler - [email protected]17 Copyright (C) 2014-2024 Bruce E. Wampler - [email protected] 18 18 19 19 This program is free software: you can redistribute it and/or modify … … 54 54 strpos($theme, '/weaver-xtreme-5') !== false )) { // only load if Weaver Xtreme is the theme 55 55 56 define('WVRX_TS_VERSION', '6. 3.1');56 define('WVRX_TS_VERSION', '6.4'); 57 57 define('WVRX_TS_PAGEBUILDERS', true); 58 58
Note: See TracChangeset
for help on using the changeset viewer.