ayecode/wp-super-duper

Lets you create a widget, block and shortcode all from the one file .

Maintainers

Package info

github.com/AyeCode/wp-super-duper

pkg:composer/ayecode/wp-super-duper

Statistics

Installs: 1 490

Dependents: 0

Suggesters: 0

Stars: 32

Open Issues: 13


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.
}