Plugin Directory

Changeset 2034720


Ignore:
Timestamp:
02/20/2019 06:07:37 AM (7 years ago)
Author:
wokamoto
Message:

[wp-simple-related-posts] Update ver.1.5.7

Location:
wp-simple-related-posts
Files:
4 edited
4 copied

Legend:

Unmodified
Added
Removed
  • wp-simple-related-posts/tags/1.5.7/modules/widget.php

    r1540361 r2034720  
    33add_action(
    44    'widgets_init',
    5     create_function( '', 'return register_widget( "Simple_Related_Posts_Widget" );' )
     5    function() {
     6        return register_widget( "Simple_Related_Posts_Widget" );
     7    }
    68);
    7  
     9
    810class Simple_Related_Posts_Widget extends WP_Widget {
    9  
     11
    1012function __construct() {
    1113    $widget_ops  = array( 'description' => __( 'Displays related posts.', SIRP_DOMAIN ) );
     
    1820    );
    1921}
    20  
     22
    2123public function form( $par ) {
    2224
     
    4850    <?php
    4951}
    50  
     52
    5153public function update( $new_instance, $old_instance ) {
    5254    return $new_instance;
    5355}
    54  
     56
    5557public function widget( $args, $par ) {
    5658
  • wp-simple-related-posts/tags/1.5.7/readme.txt

    r1944028 r2034720  
    33Tags:  related posts,related
    44Requires at least: 3.8.1
    5 Tested up to: 4.9.8
    6 Stable tag: 1.5.6
     5Tested up to: 5.0.3
     6Stable tag: 1.5.7
    77
    88Related Posts plugin. It's flexible and fast and simple.
     
    8383= 1.5.6 =
    8484* fix Skip processing at wp-cron, such as when publishing a future post
     85= 1.5.7 =
     86* Fixed warning errors
  • wp-simple-related-posts/tags/1.5.7/simple-related-posts.php

    r1944028 r2034720  
    55Description: Display Related Posts. Very Simple.
    66Author: digitalcube
    7 Version: 1.5.6
     7Version: 1.5.7
    88Author URI: https://github.com/megumiteam/wp-simple-related-posts
    99Text Domain: simple-related-posts
  • wp-simple-related-posts/trunk/modules/widget.php

    r1540361 r2034720  
    33add_action(
    44    'widgets_init',
    5     create_function( '', 'return register_widget( "Simple_Related_Posts_Widget" );' )
     5    function() {
     6        return register_widget( "Simple_Related_Posts_Widget" );
     7    }
    68);
    7  
     9
    810class Simple_Related_Posts_Widget extends WP_Widget {
    9  
     11
    1012function __construct() {
    1113    $widget_ops  = array( 'description' => __( 'Displays related posts.', SIRP_DOMAIN ) );
     
    1820    );
    1921}
    20  
     22
    2123public function form( $par ) {
    2224
     
    4850    <?php
    4951}
    50  
     52
    5153public function update( $new_instance, $old_instance ) {
    5254    return $new_instance;
    5355}
    54  
     56
    5557public function widget( $args, $par ) {
    5658
  • wp-simple-related-posts/trunk/readme.txt

    r1944028 r2034720  
    33Tags:  related posts,related
    44Requires at least: 3.8.1
    5 Tested up to: 4.9.8
    6 Stable tag: 1.5.6
     5Tested up to: 5.0.3
     6Stable tag: 1.5.7
    77
    88Related Posts plugin. It's flexible and fast and simple.
     
    8383= 1.5.6 =
    8484* fix Skip processing at wp-cron, such as when publishing a future post
     85= 1.5.7 =
     86* Fixed warning errors
  • wp-simple-related-posts/trunk/simple-related-posts.php

    r1944028 r2034720  
    55Description: Display Related Posts. Very Simple.
    66Author: digitalcube
    7 Version: 1.5.6
     7Version: 1.5.7
    88Author URI: https://github.com/megumiteam/wp-simple-related-posts
    99Text Domain: simple-related-posts
Note: See TracChangeset for help on using the changeset viewer.