Make WordPress Themes

Changeset 178551


Ignore:
Timestamp:
10/30/2022 03:38:03 PM (3 years ago)
Author:
themedropbox
Message:

New version of W3CSSPress - 2022.35

Location:
w3csspress/2022.35
Files:
3 edited
1 copied

Legend:

Unmodified
Added
Removed
  • w3csspress/2022.35/functions.php

    r178550r178551 
    466466    $dom                   = new \DOMDocument();
    467467    $libxml_previous_state = libxml_use_internal_errors( true );
    468     $dom->loadHTML( \mb_convert_encoding( $output, 'HTML-ENTITIES', 'UTF-8' ), LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD );
     468    $dom->loadHTML( $output, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD );
    469469    libxml_use_internal_errors( $libxml_previous_state );
    470470    $xpath = new \DOMXpath( $dom );
    โ€ฆโ€ฆ 
    530530    }
    531531}
     532
     533add_action( 'upgrader_process_complete', 'w3csspress_upgrader_process_complete', 10, 2 );
     534/**
     535 * Fires to finish the w3csspress update.
     536 *
     537 * @since 2022.35
     538 *
     539 * @param WP_Upgrader $upgrader WP_Upgrader instance. In other contexts this might be a Theme_Upgrader, Plugin_Upgrader, Core_Upgrade, or Language_Pack_Upgrader instance.
     540 * @param array       $hook_extra Array of bulk item update data.
     541 */
     542function w3csspress_upgrader_process_complete( $upgrader, $hook_extra ) {
     543    if ( 'update' === $hook_extra['action'] && 'theme' === $hook_extra['type'] ) {
     544        foreach ( $hook_extra['themes'] as $theme ) {
     545            if ( 'w3csspress' === $theme ) {
     546                w3csspress_after_switch_theme();
     547            }
     548        }
     549    }
     550}
  • w3csspress/2022.35/style-rtl.css

    r178550r178551 
    66Description: Universal theme with classic mode and blocks mode made to integrate the W3CSS framework inside WordPress, with global custom options and all of the W3CSS framework functionalities. The theme has been developed starting from resources on the w3schools website applied to the blankslate WordPress theme, slightly modified. The theme is accessibility ready and it is highly customizable. Please add issues on or contact me if you are interested in more options.
    77Tags: blog, news, e-commerce, accessibility-ready, grid-layout, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-logo, custom-menu, featured-images, featured-image-header, sticky-post, theme-options, threaded-comments, translation-ready, rtl-language-support, flexible-header, footer-widgets, full-width-template, editor-style, post-formats, microformats, custom-colors, block-patterns, full-site-editing, template-editing, wide-blocks, buddypress
    8 Version: 2022.34
     8Version: 2022.35
    99Requires at least: 4.1
    1010Tested up to: 6.0
  • w3csspress/2022.35/style.css

    r178550r178551 
    66Description: Universal theme with classic mode and blocks mode made to integrate the W3CSS framework inside WordPress, with global custom options and all of the W3CSS framework functionalities. The theme has been developed starting from resources on the w3schools website applied to the blankslate WordPress theme, slightly modified. The theme is accessibility ready and it is highly customizable. Please add issues on or contact me if you are interested in more options.
    77Tags: blog, news, e-commerce, accessibility-ready, grid-layout, one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-logo, custom-menu, featured-images, featured-image-header, sticky-post, theme-options, threaded-comments, translation-ready, rtl-language-support, flexible-header, footer-widgets, full-width-template, editor-style, post-formats, microformats, custom-colors, block-patterns, full-site-editing, template-editing, wide-blocks, buddypress
    8 Version: 2022.34
     8Version: 2022.35
    99Requires at least: 4.1
    1010Tested up to: 6.0
Note: See TracChangeset for help on using the changeset viewer.