ayecode / wp-super-duper
Lets you create a widget, block and shortcode all from the one file .
3.0.8-beta
2026-05-18 17:20 UTC
Requires
- php: >=7.4.0
This package is auto-updated.
Last update: 2026-06-24 14:59:09 UTC
README
A WordPress Class to build a widget, shortcode and Gutenberg block at once.
V1 to V2 migration
- Change how you load the widgets
// SD V1 used to extend the widget class. V2 does not, so we cannot call register_widget() on it. $widget = 'SD_Hello_World'; if ( is_subclass_of( $widget, 'WP_Widget' ) ) { // SD V1 is loaded. register_widget( $widget ); } else { new $widget(); // SD V2 is loaded. }