Changeset 3213629
- Timestamp:
- 12/27/2024 05:53:30 AM (3 months ago)
- 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 5 5 * Plugin URI: https://fullstackdeveloper.co.il/fs-seo-internal-link-juicer/ 6 6 * Description: A plugin to add SEO internal links between posts, pages and other post types based on focus keyphrases. 7 * Version: 1.0. 27 * Version: 1.0.3 8 8 * Author: Avi Aminov 9 9 * Author URI: https://fullstackdeveloper.co.il/ … … 19 19 define('FS_SEO_ILJ_PATH', plugin_dir_path(__FILE__)); 20 20 define('FS_SEO_ILJ_URL', plugin_dir_url(__FILE__)); 21 define('FS_SEO_ILJ_VERSION', '1.0. 2');21 define('FS_SEO_ILJ_VERSION', '1.0.3'); 22 22 23 23 class FS_SEO_Internal_Link_Juicer -
TabularUnified fs-seo-internal-link-juicer/trunk/includes/class-post-list.php ¶
r3213085 r3213629 134 134 } 135 135 echo '</td>'; 136 136 137 echo '<td>' . wp_kses($linked_from, [ 137 138 'a' => [ … … 153 154 'data-action' => [], 154 155 ], 156 'h4' => [], 157 'br' => [], 155 158 ]) . '</td>'; 159 156 160 echo '</tr>'; 157 161 } -
TabularUnified fs-seo-internal-link-juicer/trunk/readme.txt ¶
r3213621 r3213629 6 6 Tested up to: 6.7 7 7 Requires PHP: 7.2 8 Stable Tag: 1.0. 28 Stable Tag: 1.0.3 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 64 64 == Changelog == 65 65 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 66 72 = 1.0.2 = 67 73 * Added support for multiple keyphrases in meta boxes. … … 79 85 == Upgrade Notice == 80 86 87 = 1.0.3 = 88 Upgrade to version 1.0.3 for better handling of `<h4>` tags, multiple keyphrase support, enhanced sanitization with `wp_kses`, and bug fixes. 89 81 90 = 1.0.2 = 82 91 Upgrade 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; ?> 2 4 <div id="focus-keyphrase-container"> 3 5 <?php if (!empty($values)) : ?>
Note: See TracChangeset
for help on using the changeset viewer.