Plugin Directory

Changeset 3213629


Ignore:
Timestamp:
12/27/2024 05:53:30 AM (3 months ago)
Author:
fullstackdevelopercoil
Message:

Release version 1.0.3: Fixed <h4> tag issue, improved wp_kses sanitization, and multiple keyphrase support.

Location:
fs-seo-internal-link-juicer
Files:
44 added
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified fs-seo-internal-link-juicer/trunk/fs-seo-internal-link-juicer.php

    r3213085 r3213629  
    55 * Plugin URI: https://fullstackdeveloper.co.il/fs-seo-internal-link-juicer/
    66 * Description: A plugin to add SEO internal links between posts, pages and other post types based on focus keyphrases.
    7  * Version:     1.0.2
     7 * Version:     1.0.3
    88 * Author:      Avi Aminov
    99 * Author URI: https://fullstackdeveloper.co.il/
     
    1919define('FS_SEO_ILJ_PATH', plugin_dir_path(__FILE__));
    2020define('FS_SEO_ILJ_URL', plugin_dir_url(__FILE__));
    21 define('FS_SEO_ILJ_VERSION', '1.0.2');
     21define('FS_SEO_ILJ_VERSION', '1.0.3');
    2222
    2323class FS_SEO_Internal_Link_Juicer
  • TabularUnified fs-seo-internal-link-juicer/trunk/includes/class-post-list.php

    r3213085 r3213629  
    134134            }
    135135            echo '</td>';
     136
    136137            echo '<td>' . wp_kses($linked_from, [
    137138                'a' => [
     
    153154                    'data-action' => [],
    154155                ],
     156                'h4' => [],
     157                'br' => [],
    155158            ]) . '</td>';
     159
    156160            echo '</tr>';
    157161        }
  • TabularUnified fs-seo-internal-link-juicer/trunk/readme.txt

    r3213621 r3213629  
    66Tested up to: 6.7
    77Requires PHP: 7.2
    8 Stable Tag: 1.0.2
     8Stable Tag: 1.0.3
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6464== Changelog ==
    6565
     66= 1.0.3 =
     67* Fixed issue with `<h4>` tags being removed when rendering linked posts.
     68* Added support for multiple keyphrases in linked posts.
     69* Enhanced security and sanitized output with improved `wp_kses` configuration.
     70* Other minor improvements and bug fixes.
     71
    6672= 1.0.2 =
    6773* Added support for multiple keyphrases in meta boxes.
     
    7985== Upgrade Notice ==
    8086
     87= 1.0.3 =
     88Upgrade to version 1.0.3 for better handling of `<h4>` tags, multiple keyphrase support, enhanced sanitization with `wp_kses`, and bug fixes.
     89
    8190= 1.0.2 =
    8291Upgrade to version 1.0.2 for improved multiple keyphrase support, enhanced UI, better interactivity, and important security updates.
  • TabularUnified fs-seo-internal-link-juicer/trunk/templates/meta-box-focus-keyphrase-multiple.php

    r3213085 r3213629  
    1 <?php echo esc_attr($nonce); ?>
     1<?php //echo esc_html($nonce);
     2?>
     3<?php echo $nonce; ?>
    24<div id="focus-keyphrase-container">
    35    <?php if (!empty($values)) : ?>
Note: See TracChangeset for help on using the changeset viewer.