Plugin Directory

Changeset 2682784


Ignore:
Timestamp:
02/22/2022 07:03:55 AM (4 years ago)
Author:
PowieT
Message:

wordpress 5.9 and php8

Location:
random-post-shortcode
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • random-post-shortcode/trunk/random-post-shortcode.php

    r1855571 r2682784  
    44Plugin URI: https://powie.de/wordpress
    55Description: Shortcode <code>[random-post]</code> for displaying a random post, or use the Widget
    6 Version: 1.0.4
     6Version: 1.0.5
    77License: GPLv2
    88Author: Thomas Ehrhardt
  • random-post-shortcode/trunk/random-post-widget.php

    r1317238 r2682784  
    7777} // class
    7878
    79 add_action( 'widgets_init', create_function( '', "register_widget('random_Post_Widget');" ) );
     79add_action( 'widgets_init', 'random_post_register_widgets' );
     80 
     81function random_post_register_widgets() {
     82    register_widget( 'random_Post_Widget' );
     83}
  • random-post-shortcode/trunk/readme.txt

    r1997858 r2682784  
    44Tags: random, post, widget, shortcode
    55Requires at least: 4.0
    6 Tested up to: 5.0.1
    7 Stable tag: 1.0.4
     6Tested up to: 5.9
     7Stable tag: 1.0.5
    88License: GPLv2
    99
     
    1818
    1919= Support =
    20 Support Forum @ [powie.de](https://forum.powie.de)
     20Support Forum @ [powie.de](https://powie.de)
    2121
    2222== Installation ==
     
    3838= How can I support you? =
    3939
    40 Post a comment on [powie.de Forum](https://forum.powie.de)
     40Post a comment on [powie.de Forum](https://powie.de)
    4141
    4242= What is the plugin page?  =
     
    4646= Where do I post my feedback? =
    4747
    48 Post it at my Forum: [powie.de Forum](https://forum.powie.de)
     48Post it at my Forum: [powie.de Forum](https://powie.de)
    4949
    5050== Changelog ==
     51= 1.0.5 (22.02.2022) =
     52* WP 5.9 tests
     53* php 8 compatibility
     54
    5155= 1.0.4 (10.04.2017) =
    5256* 4.9.5 evaluation
Note: See TracChangeset for help on using the changeset viewer.