Changeset 3322935
- Timestamp:
- 07/06/2025 07:09:54 AM (9 months ago)
- Location:
- binaryph-ai-seo/trunk
- Files:
-
- 5 edited
-
admin/settings.php (modified) (1 diff)
-
assets/js/admin.js (modified) (1 diff)
-
binaryph-ai-seo.php (modified) (1 diff)
-
includes/ai-integration.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
binaryph-ai-seo/trunk/admin/settings.php
r3317338 r3322935 96 96 </ul> 97 97 </li> 98 <li>Rate Limit Protection: Includes a built-in 15-second pause between suggestions to prevent overwhelming AI models, especially useful when using "Thinking/Reasoning" models. If you encounter an error due to many posts, pages, or products to set keywords when applying the suggestion by the AI, try checking only the checkboxes by 10 items. This usually depends on your hosting capacity to perform the task, or probably because of a timeout set within your WordPress environment.</li>98 <li>Rate Limit Protection: Includes a built-in 5-second pause between suggestions to prevent overwhelming AI models, especially useful when using "Thinking/Reasoning" models. If you encounter an error due to many posts, pages, or products to set keywords when applying the suggestion by the AI, try checking only the checkboxes by 10 items. This usually depends on your hosting capacity to perform the task, or probably because of a timeout set within your WordPress environment.</li> 99 99 </ul> 100 100 </p> -
binaryph-ai-seo/trunk/assets/js/admin.js
r3317338 r3322935 13 13 var $tableBody = $('#' + type + '-table-body'); 14 14 var rows = $tableBody.find('tr').toArray(); 15 var delay = 15000; // 15 seconds delay between requests to the AI provider15 var delay = 5000; // 5 seconds delay between requests to the AI provider 16 16 17 17 function processRow(index) { -
binaryph-ai-seo/trunk/binaryph-ai-seo.php
r3319056 r3322935 4 4 * Plugin URI: https://binary.ph/binaryph-ai-seo 5 5 * Description: Automatically adds focus keywords to posts, pages, and products using AI for SEO optimization. Compatible with Yoast, Rank Math and WooCommerce 6 * Version: 1.0. 26 * Version: 1.0.3 7 7 * Author: BinaryPH 8 8 * Author URI: https://binary.ph -
binaryph-ai-seo/trunk/includes/ai-integration.php
r3317338 r3322935 11 11 $ai_model = get_option('binaryph_ai_seo_ai_model', ''); 12 12 13 $prompt = " Generate focus keywords for Search Engine Optimization (SEO) based on this title: $title. Provide only 1 focus keyword, without any additional text.";13 $prompt = "Analyze the title: $title, and extract from it a single contiguous phrase, using the words in their ORIGINAL ORDER, that will serve as the most effective SEO focus keyword. Make sure that the output should be an exact phrase with words in the same order in the title: $title. Provide only 1 focus keyword, without any additional text and quotes."; 14 14 15 15 $endpoint = ''; -
binaryph-ai-seo/trunk/readme.txt
r3319057 r3322935 3 3 Requires at least: 6.8 4 4 Tested up to: 6.8 5 Stable tag: 1.0. 25 Stable tag: 1.0.3 6 6 License: GPL2 7 7 8 Boost SEO with AI-generated focus keywords for posts, pages & products. Works with Yoast, Rank Math & WooCommerce. 8 Boost SEO with AI-generated focus keywords for posts, pages & products. Works with Yoast, Rank Math & WooCommerce. Full instructions: https://binary.ph/binaryph-ai-seo/ 9 9 10 10 == External Services ==
Note: See TracChangeset
for help on using the changeset viewer.