Changeset 3407710
- Timestamp:
- 12/02/2025 09:20:25 AM (3 months ago)
- Location:
- quick-llms-txt
- Files:
-
- 11 added
- 2 edited
-
tags/1.2.1 (added)
-
tags/1.2.1/assets (added)
-
tags/1.2.1/assets/css (added)
-
tags/1.2.1/assets/css/admin.css (added)
-
tags/1.2.1/assets/js (added)
-
tags/1.2.1/assets/js/admin.js (added)
-
tags/1.2.1/include (added)
-
tags/1.2.1/include/class-generate-llms.php (added)
-
tags/1.2.1/license.txt (added)
-
tags/1.2.1/quick-llms-txt.php (added)
-
tags/1.2.1/readme.txt (added)
-
trunk/quick-llms-txt.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-llms-txt/trunk/quick-llms-txt.php
r3362557 r3407710 4 4 Plugin URI: https://plugins.techbeeps.com/ 5 5 Description: Creates an llms.txt file automatically or manually for AI/Language Models with beautiful UI. 6 Version: 1. 16 Version: 1.2.1 7 7 Author: Techbeeps 8 8 Author URI: https://techbeeps.com/ … … 12 12 if (!defined('ABSPATH')) exit; 13 13 14 define('QKLLMSTXT_VERSION', '1. 1');14 define('QKLLMSTXT_VERSION', '1.2.1'); 15 15 define('QKLLMSTXT_PATH', plugin_dir_path(__FILE__)); 16 16 define('QKLLMSTXT_URL', plugin_dir_url(__FILE__)); … … 42 42 $content = $wp_filesystem->get_contents( $file_path ); 43 43 if ( $content !== false ) { 44 header( 'Content-Type: text/html; charset=utf-8' ); 44 status_header( 200 ); 45 nocache_headers(); 46 //header( 'Content-Type: text/html; charset=utf-8' ); 47 header( 'Content-Type: text/html; charset=utf-8' ); 45 48 header( 'Content-Disposition: inline; filename="llms.txt"' ); 46 echo "<pre>"; 47 echo esc_textarea($content); 48 echo "</pre>"; 49 echo '<!DOCTYPE html><html><head><meta charset="utf-8">'; 50 echo '<title>llms.txt</title>'; 51 echo '<style> 52 body { 53 margin: 0; 54 padding: 20px; 55 background: #000; 56 color: #fff; 57 font-family: monospace; 58 } 59 pre { 60 white-space: pre-wrap; 61 word-wrap: break-word; 62 } 63 </style></head><body>'; 64 65 echo '<pre>'; 66 echo esc_html( $content ); 67 echo '</pre>'; 68 echo '</body></html>'; 49 69 exit; 70 50 71 } 51 72 } -
quick-llms-txt/trunk/readme.txt
r3362557 r3407710 3 3 Tags: llms, language models, txt, file, machine-readable 4 4 Requires at least: 6.0 5 Tested up to: 6. 86 Stable tag: 1. 15 Tested up to: 6.9 6 Stable tag: 1.2.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 62 62 63 63 == Changelog == 64 = 1.2.1 = 65 * Confirmed full compatibility with WordPress 6.9. 66 64 67 65 68 = 1.0 =
Note: See TracChangeset
for help on using the changeset viewer.