Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created December 19, 2022 15:11
Show Gist options
  • Save thierrypigot/41c508097efd3b423eea12dc878b9c14 to your computer and use it in GitHub Desktop.
Save thierrypigot/41c508097efd3b423eea12dc878b9c14 to your computer and use it in GitHub Desktop.
Code qui ajoute un widget supplémentaire à la zone de widgets
<?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