Changeset 2947099
- Timestamp:
- 08/03/2023 10:55:09 AM (3 years ago)
- Location:
- wowholic-core/trunk
- Files:
-
- 3 edited
-
includes/actions/cleanup.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
wowholic-core.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wowholic-core/trunk/includes/actions/cleanup.php
r2645312 r2947099 6 6 // Launching operation cleanup. 7 7 add_action( 'init', 'wowcore_cleanup_head' ); 8 9 // Remove global styles and SVG filters 10 add_action( 'init', 'wowcore_remove_global_style_and_svg_filters' ); 8 11 9 12 // Remove WP version from RSS. … … 19 22 add_action( 'wp_enqueue_scripts', 'wowcore_remove_wp_block_library_css' ); 20 23 24 // Cleanup head 21 25 function wowcore_cleanup_head() { 22 26 // EditURI link. … … 51 55 } 52 56 57 // Remove global styles and SVG filters 58 function wowcore_remove_global_style_and_svg_filters() { 59 if ( wowcore_is_plugin_active_by_slug( 'classic-editor' ) ) { 60 remove_action( 'wp_enqueue_scripts', 'wp_enqueue_global_styles' ); 61 remove_action( 'wp_body_open', 'wp_global_styles_render_svg_filters' ); 62 } 63 } 64 53 65 // Remove injected CSS for recent comments widget. 54 66 function wowcore_remove_wp_widget_recent_comments_style() { -
wowholic-core/trunk/readme.txt
r2866428 r2947099 7 7 Requires at least: 5.6 8 8 Tested up to: 6.1 9 Stable tag: 1.0. 69 Stable tag: 1.0.7 10 10 Requires PHP: 7.0 11 11 … … 77 77 == Changelog == 78 78 79 = 1.0.7 = 80 Release Date: August 3rd, 2023 81 82 = 1.0.6 = 83 Release Date: February 16th, 2023 84 79 85 = 1.0.5 = 80 86 Release Date: November 3rd, 2022 -
wowholic-core/trunk/wowholic-core.php
r2866428 r2947099 4 4 * Plugin URI: https://github.com/Wowholic/CORE 5 5 * Description: Utility functions and options for common tasks in WordPress. 6 * Version: 1.0. 66 * Version: 1.0.7 7 7 * Author: Wowholic 8 8 * Author URI: https://wowholic.com
Note: See TracChangeset
for help on using the changeset viewer.