Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlaizumibamford/6a2791e9a15fc07845ac63026f7bd7b7 to your computer and use it in GitHub Desktop.
Save carlaizumibamford/6a2791e9a15fc07845ac63026f7bd7b7 to your computer and use it in GitHub Desktop.
Creating A Custom Wordpress Widget Plugin Vol 3
public function __construct() {
parent::__construct(
'my_custom_widget',
__( 'My Custom Widget', 'text_domain' ),
array(
'customize_selective_refresh' => true,
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment