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 template_register_widget() { | |
register_widget( 'my_widget' ); | |
} | |
add_action( 'widgets_init', 'template_register_widget' ); | |
class my_widget extends WP_Widget { | |
function __construct() { |
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 | |
/* | |
Shortcode incluant la liste des pays du monde en français pour le plugin Wordpress WPCF7 | |
Modifications: | |
- classement par ordre alphabétique | |
- "France" en première position |