Changeset 3000536
- Timestamp:
- 11/23/2023 08:47:09 AM (2 years ago)
- Location:
- ai-shield/trunk
- Files:
-
- 5 deleted
- 3 edited
-
ai-shield.php (modified) (1 diff)
-
assets/banner-1544x500.png (deleted)
-
assets/banner-772x250.png (deleted)
-
assets/icon.svg (deleted)
-
assets/screenshot-1.png (deleted)
-
assets/screenshot-2.png (deleted)
-
includes/class-ai-shield.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ai-shield/trunk/ai-shield.php
r3000031 r3000536 4 4 * Plugin URI: https://github.com/KingMob/ai-shield 5 5 * Description: AI Shield helps protect your content from being used to train AI models, by inserting whitespace that's invisible to humans, but awkward for AIs. 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: Matthew Davidson 8 8 * Author URI: https://github.com/KingMob -
ai-shield/trunk/includes/class-ai-shield.php
r3000031 r3000536 283 283 // $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); 284 284 285 $this->loader->add_filter( 'the_title', $this, 'obscure_content');286 $this->loader->add_filter( 'the_preview', $this, 'obscure_content');287 $this->loader->add_filter( 'the_content', $this, 'obscure_content');285 $this->loader->add_filter( 'the_title', $this, 'obscure_content', PHP_INT_MAX ); 286 $this->loader->add_filter( 'the_preview', $this, 'obscure_content', PHP_INT_MAX ); 287 $this->loader->add_filter( 'the_content', $this, 'obscure_content', PHP_INT_MAX ); 288 288 } 289 289 -
ai-shield/trunk/readme.txt
r3000031 r3000536 2 2 Contributors: kinggmobb 3 3 Donate link: https://github.com/sponsors/KingMob 4 Stable tag: 1.0. 24 Stable tag: 1.0.3 5 5 Tags: AI, chatGPT, gpt, openai 6 6 Requires at least: 5.6.10 … … 54 54 == Changelog == 55 55 56 = 1.0.3 = 57 * Fixed priority bug that interfered with some shortcodes 58 56 59 = 1.0.2 = 57 60 * Fixed minor admin bug
Note: See TracChangeset
for help on using the changeset viewer.