define a custom ID base for WP_Widget initialization

This commit is contained in:
2025-08-13 11:50:11 +02:00
parent d1ba1d0eb4
commit 78c17bdbbf

View File

@@ -25,7 +25,7 @@ class Widget extends WP_Widget {
* SCLiveticker_Widget constructor. * SCLiveticker_Widget constructor.
*/ */
public function __construct() { public function __construct() {
parent::__construct( false, 'Liveticker' ); parent::__construct( 'scliveticker', 'Liveticker' );
} }
/** /**