Created
May 11, 2022 11:09
-
-
Save carlaizumibamford/6a2791e9a15fc07845ac63026f7bd7b7 to your computer and use it in GitHub Desktop.
Creating A Custom Wordpress Widget Plugin Vol 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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