Created
December 19, 2022 15:11
-
-
Save thierrypigot/41c508097efd3b423eea12dc878b9c14 to your computer and use it in GitHub Desktop.
Code qui ajoute un widget supplémentaire à la zone de widgets
This file contains 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
<?php | |
function add_my_widget() { | |
register_widget( 'My_Widget' ); | |
} | |
add_action( 'widgets_init', 'add_my_widget' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment