Plugin Directory

Changeset 3017943


Ignore:
Timestamp:
01/05/2024 10:54:36 PM (2 years ago)
Author:
wpweaver
Message:

V 6.4

Location:
weaverx-theme-support
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • weaverx-theme-support/tags/6.4/includes/wvrx-ts-widgets.php

    r2891913 r3017943  
    8484    $text = get_post_meta(get_the_ID(),'wvrx_ts_pp_text',true);
    8585
    86     if (empty($title) && empty($text))
    87         {return;}
     86    if (empty($title) && empty($text)) {
     87            return;
     88        }
    8889
    8990    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));
    9295    echo $after_widget;
    9396    }
  • weaverx-theme-support/tags/6.4/readme.txt

    r2961795 r3017943  
    1111Requires at least: 6.0
    1212Requires PHP: 7.2
    13 Tested up to: 6.3
    14 Stable tag: 6.3.1
     13Tested up to: 6.4
     14Stable tag: 6.4
    1515
    1616A useful shortcode and widget collection for Weaver Xtreme
     
    7676
    7777== ChangeLog =
     78= 6.4 =
     79* Update: WP 6.4 compatibility
     80* Tweak: Text Widge output formatting
     81
    7882= 6.3.1 =
    7983* Tweak: Additional Multisite Super Admin validation
  • weaverx-theme-support/tags/6.4/weaverx-ts.php

    r2961795 r3017943  
    66Author: wpweaver
    77Author URI: http://weavertheme.com/about/
    8 Version: 6.3.1
     8Version: 6.4
    99License: GPL V3
    1010Requires PHP: 7.2
    1111Requires at least: 6.0
    12 Tested up to: 6.3
    13 Stable tag: 6.3.1
     12Tested up to: 6.4
     13Stable tag: 6.4
    1414
    1515Weaver Xtreme Theme Support
    1616
    17 Copyright (C) 2014-2023 Bruce E. Wampler - [email protected]
     17Copyright (C) 2014-2024 Bruce E. Wampler - [email protected]
    1818
    1919This program is free software: you can redistribute it and/or modify
     
    5454    strpos($theme, '/weaver-xtreme-5') !== false )) {        // only load if Weaver Xtreme is the theme
    5555
    56     define('WVRX_TS_VERSION', '6.3.1');
     56    define('WVRX_TS_VERSION', '6.4');
    5757    define('WVRX_TS_PAGEBUILDERS', true);
    5858
  • weaverx-theme-support/trunk/includes/wvrx-ts-widgets.php

    r2891913 r3017943  
    8484    $text = get_post_meta(get_the_ID(),'wvrx_ts_pp_text',true);
    8585
    86     if (empty($title) && empty($text))
    87         {return;}
     86    if (empty($title) && empty($text)) {
     87            return;
     88        }
    8889
    8990    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));
    9295    echo $after_widget;
    9396    }
  • weaverx-theme-support/trunk/readme.txt

    r2961795 r3017943  
    1111Requires at least: 6.0
    1212Requires PHP: 7.2
    13 Tested up to: 6.3
    14 Stable tag: 6.3.1
     13Tested up to: 6.4
     14Stable tag: 6.4
    1515
    1616A useful shortcode and widget collection for Weaver Xtreme
     
    7676
    7777== ChangeLog =
     78= 6.4 =
     79* Update: WP 6.4 compatibility
     80* Tweak: Text Widge output formatting
     81
    7882= 6.3.1 =
    7983* Tweak: Additional Multisite Super Admin validation
  • weaverx-theme-support/trunk/weaverx-ts.php

    r2961795 r3017943  
    66Author: wpweaver
    77Author URI: http://weavertheme.com/about/
    8 Version: 6.3.1
     8Version: 6.4
    99License: GPL V3
    1010Requires PHP: 7.2
    1111Requires at least: 6.0
    12 Tested up to: 6.3
    13 Stable tag: 6.3.1
     12Tested up to: 6.4
     13Stable tag: 6.4
    1414
    1515Weaver Xtreme Theme Support
    1616
    17 Copyright (C) 2014-2023 Bruce E. Wampler - [email protected]
     17Copyright (C) 2014-2024 Bruce E. Wampler - [email protected]
    1818
    1919This program is free software: you can redistribute it and/or modify
     
    5454    strpos($theme, '/weaver-xtreme-5') !== false )) {        // only load if Weaver Xtreme is the theme
    5555
    56     define('WVRX_TS_VERSION', '6.3.1');
     56    define('WVRX_TS_VERSION', '6.4');
    5757    define('WVRX_TS_PAGEBUILDERS', true);
    5858
Note: See TracChangeset for help on using the changeset viewer.