Changeset 3271065
- Timestamp:
- 04/11/2025 01:07:45 PM (12 months ago)
- Location:
- topirank-integration
- Files:
-
- 33 added
- 3 edited
-
tags/1.1.6 (added)
-
tags/1.1.6/admin (added)
-
tags/1.1.6/admin/admin-page.php (added)
-
tags/1.1.6/admin/menu.php (added)
-
tags/1.1.6/assets (added)
-
tags/1.1.6/assets/css (added)
-
tags/1.1.6/assets/css/topirank-admin-style.css (added)
-
tags/1.1.6/assets/css/topirank-editor-style.css (added)
-
tags/1.1.6/assets/css/topirank-normalize.css (added)
-
tags/1.1.6/assets/css/topirank-post-admin-style.css (added)
-
tags/1.1.6/assets/js (added)
-
tags/1.1.6/assets/js/topirank-admin-scripts.js (added)
-
tags/1.1.6/assets/js/topirank-normalize.js (added)
-
tags/1.1.6/includes (added)
-
tags/1.1.6/includes/api-integration.php (added)
-
tags/1.1.6/includes/create-template.php (added)
-
tags/1.1.6/includes/extract-and-create.php (added)
-
tags/1.1.6/includes/file-upload.php (added)
-
tags/1.1.6/includes/helpers.php (added)
-
tags/1.1.6/includes/init.php (added)
-
tags/1.1.6/includes/process-folders.php (added)
-
tags/1.1.6/includes/register-files.php (added)
-
tags/1.1.6/includes/resource-cleaner.php (added)
-
tags/1.1.6/includes/topirank-template.php (added)
-
tags/1.1.6/includes/update-content-and-seo.php (added)
-
tags/1.1.6/includes/update-functionality.php (added)
-
tags/1.1.6/includes/utils.php (added)
-
tags/1.1.6/languages (added)
-
tags/1.1.6/languages/topirank-integration-fr_FR.mo (added)
-
tags/1.1.6/languages/topirank-integration-fr_FR.po (added)
-
tags/1.1.6/languages/topirank-integration.pot (added)
-
tags/1.1.6/readme.txt (added)
-
tags/1.1.6/topirank-integration.php (added)
-
trunk/includes/register-files.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/topirank-integration.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
topirank-integration/trunk/includes/register-files.php
r3269601 r3271065 5 5 { 6 6 global $post; 7 return is_object($post);7 return !empty($post) && is_object($post) && isset($post->ID); 8 8 } 9 9 … … 83 83 84 84 add_action('wp_enqueue_scripts', 'topirank_enqueue_archive_files'); 85 85 86 function topirank_enqueue_archive_files() 86 87 { … … 118 119 foreach ($css_files as $css_file) { 119 120 $file_name = basename($css_file); 121 122 if (has_invalid_url_chars($file_name)) { 123 continue; 124 } 120 125 121 126 wp_enqueue_style( … … 131 136 $js_files = glob($js_path . '/*.js'); 132 137 foreach ($js_files as $js_file) { 138 $file_name = basename($js_file); 139 140 if (has_invalid_url_chars($file_name)) { 141 continue; 142 } 143 133 144 wp_enqueue_script( 134 145 'topirank-archive-js-' . sanitize_title(basename($js_file, '.js')), -
topirank-integration/trunk/readme.txt
r3269601 r3271065 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7.2 6 Stable tag: 1.1. 56 Stable tag: 1.1.6 7 7 Requires PHP: 7.3 8 8 License: GPLv2 or later … … 56 56 - Temporary archives are automatically deleted after processing. 57 57 58 == Frequently Asked Questions == 59 60 = Is it compatible with caching plugins? = 61 Yes, tested and verified with: 62 - LiteSpeed Cache 63 - WP Rocket 64 - W3 Total Cache 65 - LWS Optimize 66 58 67 == Changelog == 68 69 = 1.1.6 = 70 * Fixed PHP Warning messages under certain server configurations. 71 * Optimized the frontend JavaScript script (reduced size and improved loading). 72 * Successfully tested for compatibility with caching plugins: 73 - LiteSpeed Cache 74 - WP Rocket 75 - W3 Total Cache 76 - LWS Optimize 59 77 60 78 = 1.1.5 = -
topirank-integration/trunk/topirank-integration.php
r3269601 r3271065 3 3 Plugin Name: Topirank Integration 4 4 Description: Plugin for parsing pages 5 Version: 1.1. 55 Version: 1.1.6 6 6 Author: Topirank 7 7 License: GPLv2 or later … … 13 13 } 14 14 15 15 16 require_once plugin_dir_path(__FILE__) . 'admin/menu.php'; 16 17 require_once plugin_dir_path(__FILE__) . 'admin/admin-page.php'; 18 require_once plugin_dir_path(__FILE__) . 'includes/utils.php'; 17 19 require_once plugin_dir_path(__FILE__) . 'includes/init.php'; 18 20 require_once plugin_dir_path(__FILE__) . 'includes/update-content-and-seo.php';
Note: See TracChangeset
for help on using the changeset viewer.