Changeset 3102999
- Timestamp:
- 06/15/2024 08:27:34 AM (20 months ago)
- Location:
- css-js-files
- Files:
-
- 7 added
- 2 edited
-
tags/1.4.8 (added)
-
tags/1.4.8/css (added)
-
tags/1.4.8/css-js-files.php (added)
-
tags/1.4.8/css/css-js-files.css (added)
-
tags/1.4.8/js (added)
-
tags/1.4.8/js/css-js-files.js (added)
-
tags/1.4.8/readme.txt (added)
-
trunk/css-js-files.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
css-js-files/trunk/css-js-files.php
r3077365 r3102999 4 4 Plugin URI: https://wordpress.org/plugins/css-js-files/ 5 5 Description: Add CSS files and/or CSS custom rules to any single page or post or globally 6 Version: 1.4. 76 Version: 1.4.8 7 7 Author: James Low 8 8 Author URI: http://jameslow.com … … 27 27 add_action('wp_footer', array('CSS_JS_Files', 'wp_footer')); 28 28 /* Delete options when post is deleted */ 29 add_action('delete_post', array('CSS_JS_Files', 'delete_post'));29 //add_action('delete_post', array('CSS_JS_Files', 'delete_post')); 30 30 /* Delete all options when the plugin is uninstalling */ 31 31 //register_uninstall_hook(plugin_dir_path( __FILE__ ).'uninstall.php', 'uninstall'); … … 287 287 public static function delete_post() { 288 288 global $post; 289 if ('trash' == get_post_status($post _id)) {289 if ('trash' == get_post_status($post)) { 290 290 delete_post_meta($post->ID, 'css_js_files_css_links'); 291 291 delete_post_meta($post->ID, 'css_js_files_css_files'); -
css-js-files/trunk/readme.txt
r3077365 r3102999 5 5 Requires at least: 3.0 6 6 Tested up to: 6.0.1 7 Stable tag: 1.4. 77 Stable tag: 1.4.8 8 8 License: MIT Licens 9 9 License URI: https://opensource.org/licenses/MIT … … 29 29 30 30 == Changelog == 31 32 = 1.4.8 = 33 * Remove code that deletes meta on move to trash as this was not working anyway and we may want to restore if restored from trash 31 34 32 35 = 1.4.7 =
Note: See TracChangeset
for help on using the changeset viewer.