diff --git a/ACTIONS-FILTERS.md b/ACTIONS-FILTERS.md
index 4cc45044e..8394f66bb 100644
--- a/ACTIONS-FILTERS.md
+++ b/ACTIONS-FILTERS.md
@@ -1416,7 +1416,7 @@ add_filter( 'convertkit_resource_forms_output_script', function( $script ) {
convertkit_broadcasts_build_post_args
- includes/class-convertkit-broadcasts-importer.php::359
+ includes/class-convertkit-broadcasts-importer.php::360
Overview
Define the wp_insert_post() compatible arguments for importing a ConvertKit Broadcast to a new WordPress Post.
Parameters
@@ -1447,7 +1447,7 @@ add_filter( 'convertkit_broadcasts_build_post_args', function( $post_args, $broa
convertkit_broadcasts_parse_broadcast_content
- includes/class-convertkit-broadcasts-importer.php::507
+ includes/class-convertkit-broadcasts-importer.php::526
Overview
Parses the given Broadcast's content, removing unnecessary HTML tags and styles.
Parameters
@@ -1490,7 +1490,7 @@ add_filter( 'convertkit_broadcasts_parse_broadcast_content', function( $content,
convertkit_broadcasts_parse_broadcast_content_permitted_html_tags
- includes/class-convertkit-broadcasts-importer.php::607
+ includes/class-convertkit-broadcasts-importer.php::626
Overview
Define the HTML tags to retain in the Broadcast Content.
Parameters
diff --git a/languages/convertkit.pot b/languages/convertkit.pot
index c1c327171..07676d619 100644
--- a/languages/convertkit.pot
+++ b/languages/convertkit.pot
@@ -2,14 +2,14 @@
# This file is distributed under the GPLv3 or later.
msgid ""
msgstr ""
-"Project-Id-Version: Kit (formerly ConvertKit) 2.8.1\n"
+"Project-Id-Version: Kit (formerly ConvertKit) 2.8.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/convertkit\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"POT-Creation-Date: 2025-05-07T03:22:58+00:00\n"
+"POT-Creation-Date: 2025-05-28T04:09:45+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0\n"
"X-Domain: convertkit\n"
@@ -1328,11 +1328,11 @@ msgid "Access Token not configured in Plugin Settings."
msgstr ""
#. translators: %1$s: PHP class name
-#: includes/class-wp-convertkit.php:395
+#: includes/class-wp-convertkit.php:388
msgid "Kit Error: Could not load Plugin class %1$s"
msgstr ""
-#: includes/class-wp-convertkit.php:405
+#: includes/class-wp-convertkit.php:398
msgid "Kit Error"
msgstr ""
diff --git a/readme.txt b/readme.txt
index 6d54544c3..852e9a0af 100755
--- a/readme.txt
+++ b/readme.txt
@@ -5,7 +5,7 @@ Tags: email marketing, email newsletter, subscribers, landing page, membership
Requires at least: 5.0
Tested up to: 6.8
Requires PHP: 7.1
-Stable tag: 2.8.1
+Stable tag: 2.8.2
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -161,6 +161,10 @@ Full Plugin documentation can be found [here](https://help.kit.com/en/articles/2
== Changelog ==
+### 2.8.2 2025-05-28
+* Fix: Broadcasts: Remove emoijs from Permalink whem importing Broadcasts to WordPress Posts
+* Fix: Coding Standards: Use `wp_doing_cron` function, instead of `DOING_CRON` constant
+
### 2.8.1 2025-05-07
* Added: Member Content: Permits Apple, DuckDuckGo, OpenAI Search, Perplexity and Yandex to crawl Member Content if the Permit Search Engine Crawlers option is enabled
* Fix: Classic Editor: Display refresh button icon
diff --git a/wp-convertkit.php b/wp-convertkit.php
index ddedced82..c3175416a 100644
--- a/wp-convertkit.php
+++ b/wp-convertkit.php
@@ -9,7 +9,7 @@
* Plugin Name: Kit (formerly ConvertKit)
* Plugin URI: https://kit.com/
* Description: Display Kit (formerly ConvertKit) email subscription forms, landing pages, products, broadcasts and more.
- * Version: 2.8.1
+ * Version: 2.8.2
* Author: Kit
* Author URI: https://kit.com/
* Text Domain: convertkit
@@ -27,7 +27,7 @@
define( 'CONVERTKIT_PLUGIN_FILE', plugin_basename( __FILE__ ) );
define( 'CONVERTKIT_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'CONVERTKIT_PLUGIN_PATH', __DIR__ );
-define( 'CONVERTKIT_PLUGIN_VERSION', '2.8.1' );
+define( 'CONVERTKIT_PLUGIN_VERSION', '2.8.2' );
define( 'CONVERTKIT_OAUTH_CLIENT_ID', 'HXZlOCj-K5r0ufuWCtyoyo3f688VmMAYSsKg1eGvw0Y' );
define( 'CONVERTKIT_OAUTH_CLIENT_REDIRECT_URI', 'https://app.kit.com/wordpress/redirect' );