From 502abb10af7ee7b749b5baadc370edce3db06ca7 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sat, 16 Aug 2025 10:57:58 +0200 Subject: [PATCH] remove explicit call to load_plugin_textdomain (#34) Loading the textdomain explicitly is not required for plugins hosted on w.org since WordPress 4.6. Remove the call from our init routine. --- includes/class-scliveticker.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/includes/class-scliveticker.php b/includes/class-scliveticker.php index deb0494..2252c2a 100644 --- a/includes/class-scliveticker.php +++ b/includes/class-scliveticker.php @@ -80,9 +80,6 @@ class SCLiveticker { return; } - // Load Textdomain. - load_plugin_textdomain( 'stklcode-liveticker' ); - // Allow shortcodes in widgets. add_filter( 'widget_text', 'do_shortcode' );