From 78c17bdbbf1ad17b16f399cc59a9615155a3d522 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Wed, 13 Aug 2025 11:50:11 +0200 Subject: [PATCH] define a custom ID base for WP_Widget initialization --- includes/class-widget.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-widget.php b/includes/class-widget.php index e35dd94..3b33b70 100644 --- a/includes/class-widget.php +++ b/includes/class-widget.php @@ -25,7 +25,7 @@ class Widget extends WP_Widget { * SCLiveticker_Widget constructor. */ public function __construct() { - parent::__construct( false, 'Liveticker' ); + parent::__construct( 'scliveticker', 'Liveticker' ); } /**