Plugin Directory

Changeset 3271065


Ignore:
Timestamp:
04/11/2025 01:07:45 PM (12 months ago)
Author:
topirank
Message:

Init version 1.1.6

Location:
topirank-integration
Files:
33 added
3 edited

Legend:

Unmodified
Added
Removed
  • topirank-integration/trunk/includes/register-files.php

    r3269601 r3271065  
    55{
    66    global $post;
    7     return is_object($post);
     7    return !empty($post) && is_object($post) && isset($post->ID);
    88}
    99
     
    8383
    8484add_action('wp_enqueue_scripts', 'topirank_enqueue_archive_files');
     85
    8586function topirank_enqueue_archive_files()
    8687{
     
    118119        foreach ($css_files as $css_file) {
    119120            $file_name = basename($css_file);
     121
     122            if (has_invalid_url_chars($file_name)) {
     123                continue;
     124            }
    120125
    121126            wp_enqueue_style(
     
    131136        $js_files = glob($js_path . '/*.js');
    132137        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
    133144            wp_enqueue_script(
    134145                'topirank-archive-js-' . sanitize_title(basename($js_file, '.js')),
  • topirank-integration/trunk/readme.txt

    r3269601 r3271065  
    44Requires at least: 6.0
    55Tested up to: 6.7.2
    6 Stable tag: 1.1.5
     6Stable tag: 1.1.6
    77Requires PHP: 7.3
    88License: GPLv2 or later
     
    5656- Temporary archives are automatically deleted after processing.
    5757
     58== Frequently Asked Questions ==
     59
     60= Is it compatible with caching plugins? =
     61Yes, tested and verified with:
     62- LiteSpeed Cache
     63- WP Rocket
     64- W3 Total Cache
     65- LWS Optimize
     66
    5867== 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
    5977
    6078= 1.1.5 =
  • topirank-integration/trunk/topirank-integration.php

    r3269601 r3271065  
    33Plugin Name: Topirank Integration
    44Description: Plugin for parsing pages
    5 Version: 1.1.5
     5Version: 1.1.6
    66Author: Topirank
    77License: GPLv2 or later
     
    1313}
    1414
     15
    1516require_once plugin_dir_path(__FILE__) . 'admin/menu.php';
    1617require_once plugin_dir_path(__FILE__) . 'admin/admin-page.php';
     18require_once plugin_dir_path(__FILE__) . 'includes/utils.php';
    1719require_once plugin_dir_path(__FILE__) . 'includes/init.php';
    1820require_once plugin_dir_path(__FILE__) . 'includes/update-content-and-seo.php';
Note: See TracChangeset for help on using the changeset viewer.