Changeset 178551
- Timestamp:
- 10/30/2022 03:38:03 PM (3 years ago)
- Location:
- w3csspress/2022.35
- Files:
- 3 edited
- 1 copied
- . (copied) (copied from w3csspress/2022.34)
- functions.php (modified) (2 diffs)
- style-rtl.css (modified) (1 diff)
- style.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
w3csspress/2022.35/functions.php
r178550 r178551 466 466 $dom = new \DOMDocument(); 467 467 $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 ); 469 469 libxml_use_internal_errors( $libxml_previous_state ); 470 470 $xpath = new \DOMXpath( $dom ); โฆ โฆ 530 530 } 531 531 } 532 533 add_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 */ 542 function 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
r178550 r178551 6 6 Description: 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. 7 7 Tags: 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.3 48 Version: 2022.35 9 9 Requires at least: 4.1 10 10 Tested up to: 6.0 w3csspress/2022.35/style.css
r178550 r178551 6 6 Description: 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. 7 7 Tags: 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.3 48 Version: 2022.35 9 9 Requires at least: 4.1 10 10 Tested up to: 6.0
Note: See TracChangeset for help on using the changeset viewer.