Changeset 2882159
- Timestamp:
- 03/17/2023 07:47:55 PM (3 years ago)
- File:
-
- 1 edited
-
meu-astro-horoscopo/trunk/meuastro.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
meu-astro-horoscopo/trunk/meuastro.php
r2880134 r2882159 5 5 Plugin URI: 6 6 Description: Horóscopo em tempo real Meu Astro 7 Version: 1. 27 Version: 1.3 8 8 Author: Raphael Heide 9 9 License: GPL2 … … 80 80 81 81 82 add_action( 'widgets_init', create_function('', 'return register_widget("meuastroWidget");') ); 82 // STOPS on 8.0 83 // add_action( 'widgets_init', create_function('', 'return register_widget("meuastroWidget");') ); 84 85 // Works on 8.0+ 86 add_action( 'widgets_init', function() { return register_widget("meuastroWidget"); } ); 83 87 84 88 ?>
Note: See TracChangeset
for help on using the changeset viewer.