Make WordPress Themes

Changeset 211362

Timestamp:
12/14/2023 07:23:03 AM (2 years ago)
Author:
themedropbox
Message:

New version of OceanWP - 3.5.3

Location:
oceanwp/3.5.3
Files:
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • oceanwp/3.5.3/README.md

    r211019 r211362  
    55**Tested up to:** WordPress 6.4.2
    66=======
    7 **Stable tag:** 3.5.2
     7**Stable tag:** 3.5.3
    88**Requires PHP:** 7.2
    99**License:** GPLv2 or later
  • oceanwp/3.5.3/changelog.md

    r211019 r211362  
    11# OceanWP Changelog
     2
     3### _2023.12.14_ - 3.5.3
     4- **Fixed**:: Compatibility: PHP 8.1+: Customizer not loading due to multi-select error.
    25
    36### _2023.12.11_ - 3.5.2
  • oceanwp/3.5.3/inc/customizer/controls/multiple-select/class-control-multiple-select.php

    r211019 r211362  
    6565    }
    6666
    67     public function render_content() {
    68         if (empty($this->choices)) {
    69             return;
    70         }
     67    public function render_content() {
     68        if (empty($this->choices)) {
     69            return;
     70        }
    7171
    72         ?>
    73         <label>
    74             <span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
    75             <select <?php $this->link(); ?> multiple="multiple" style="height: 100%;">
    76                 <?php
    77                 foreach ($this->choices as $value => $label) {
    78                     $selected = in_array($value, $this->value()) ? selected(1, 1, false) : '';
    79                     echo '<option value="' . esc_attr($value) . '"' . $selected . '>' . esc_html($label) . '</option>';
    80                 }
    81                 ?>
    82             </select>
    83         </label>
    84         <?php
    85     }
     72        ?>
     73        <label>
     74            <span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
     75            <select <?php $this->link(); ?> multiple="multiple" style="height: 100%;">
     76                <?php
     77                foreach ($this->choices as $value => $label) {
     78                    $selected = in_array($value, (array) $this->value()) ? selected(1, 1, false) : '';
     79                    echo '<option value="' . esc_attr($value) . '"' . $selected . '>' . esc_html($label) . '</option>';
     80                }
     81                ?>
     82            </select>
     83        </label>
     84        <?php
     85    }
    8686
    8787    /**
  • oceanwp/3.5.3/languages/oceanwp.pot

    r211019 r211362  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: OceanWP 3.5.2\n"
     5"Project-Id-Version: OceanWP 3.5.3\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/oceanwp\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-12-11T03:42:23+00:00\n"
     12"POT-Creation-Date: 2023-12-14T06:20:47+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.8.1\n"
  • oceanwp/3.5.3/readme.txt

    r211019 r211362  
    22Contributors: oceanwp
    33Tested up to: 6.4.2
    4 Stable tag: 3.5.2
     4Stable tag: 3.5.3
    55Requires PHP: 7.2
    66License: GPLv2 or later
  • oceanwp/3.5.3/sass/style.scss

    r211019 r211362  
    33 * Theme Name:         OceanWP
    44 * Text Domain:        oceanwp
    5  * Version:            3.5.2
     5 * Version:            3.5.3
    66 * Tested up to:       6.4.2
    77 * Requires at least:  5.6
  • oceanwp/3.5.3/style.css

    r211019 r211362  
    22 * Theme Name:         OceanWP
    33 * Text Domain:        oceanwp
    4  * Version:            3.5.2
     4 * Version:            3.5.3
    55 * Tested up to:       6.4.2
    66 * Requires at least:  5.6
Note: See TracChangeset for help on using the changeset viewer.