Changeset 2034720
- Timestamp:
- 02/20/2019 06:07:37 AM (7 years ago)
- Location:
- wp-simple-related-posts
- Files:
-
- 4 edited
- 4 copied
-
tags/1.5.7 (copied) (copied from wp-simple-related-posts/trunk)
-
tags/1.5.7/admin/meta_box.php (copied) (copied from wp-simple-related-posts/trunk/admin/meta_box.php)
-
tags/1.5.7/modules/widget.php (modified) (3 diffs)
-
tags/1.5.7/readme.txt (copied) (copied from wp-simple-related-posts/trunk/readme.txt) (2 diffs)
-
tags/1.5.7/simple-related-posts.php (copied) (copied from wp-simple-related-posts/trunk/simple-related-posts.php) (1 diff)
-
trunk/modules/widget.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/simple-related-posts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-simple-related-posts/tags/1.5.7/modules/widget.php
r1540361 r2034720 3 3 add_action( 4 4 'widgets_init', 5 create_function( '', 'return register_widget( "Simple_Related_Posts_Widget" );' ) 5 function() { 6 return register_widget( "Simple_Related_Posts_Widget" ); 7 } 6 8 ); 7 9 8 10 class Simple_Related_Posts_Widget extends WP_Widget { 9 11 10 12 function __construct() { 11 13 $widget_ops = array( 'description' => __( 'Displays related posts.', SIRP_DOMAIN ) ); … … 18 20 ); 19 21 } 20 22 21 23 public function form( $par ) { 22 24 … … 48 50 <?php 49 51 } 50 52 51 53 public function update( $new_instance, $old_instance ) { 52 54 return $new_instance; 53 55 } 54 56 55 57 public function widget( $args, $par ) { 56 58 -
wp-simple-related-posts/tags/1.5.7/readme.txt
r1944028 r2034720 3 3 Tags: related posts,related 4 4 Requires at least: 3.8.1 5 Tested up to: 4.9.86 Stable tag: 1.5. 65 Tested up to: 5.0.3 6 Stable tag: 1.5.7 7 7 8 8 Related Posts plugin. It's flexible and fast and simple. … … 83 83 = 1.5.6 = 84 84 * 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 5 5 Description: Display Related Posts. Very Simple. 6 6 Author: digitalcube 7 Version: 1.5. 67 Version: 1.5.7 8 8 Author URI: https://github.com/megumiteam/wp-simple-related-posts 9 9 Text Domain: simple-related-posts -
wp-simple-related-posts/trunk/modules/widget.php
r1540361 r2034720 3 3 add_action( 4 4 'widgets_init', 5 create_function( '', 'return register_widget( "Simple_Related_Posts_Widget" );' ) 5 function() { 6 return register_widget( "Simple_Related_Posts_Widget" ); 7 } 6 8 ); 7 9 8 10 class Simple_Related_Posts_Widget extends WP_Widget { 9 11 10 12 function __construct() { 11 13 $widget_ops = array( 'description' => __( 'Displays related posts.', SIRP_DOMAIN ) ); … … 18 20 ); 19 21 } 20 22 21 23 public function form( $par ) { 22 24 … … 48 50 <?php 49 51 } 50 52 51 53 public function update( $new_instance, $old_instance ) { 52 54 return $new_instance; 53 55 } 54 56 55 57 public function widget( $args, $par ) { 56 58 -
wp-simple-related-posts/trunk/readme.txt
r1944028 r2034720 3 3 Tags: related posts,related 4 4 Requires at least: 3.8.1 5 Tested up to: 4.9.86 Stable tag: 1.5. 65 Tested up to: 5.0.3 6 Stable tag: 1.5.7 7 7 8 8 Related Posts plugin. It's flexible and fast and simple. … … 83 83 = 1.5.6 = 84 84 * 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 5 5 Description: Display Related Posts. Very Simple. 6 6 Author: digitalcube 7 Version: 1.5. 67 Version: 1.5.7 8 8 Author URI: https://github.com/megumiteam/wp-simple-related-posts 9 9 Text Domain: simple-related-posts
Note: See TracChangeset
for help on using the changeset viewer.