Yet Another Related Posts Plugin (YARPP) - Version 3.0.13

Version Description

  • Quick immediate bugfix to 3.0.12
Download this release

Release Info

Developer mitchoyoshitaka
Plugin Icon 128x128 Yet Another Related Posts Plugin (YARPP)
Version 3.0.13
Comparing to
See all releases

Code changes from version 3.0.12 to 3.0.13

Files changed (3) hide show
  1. includes.php +8 -0
  2. readme.txt +3 -1
  3. yarpp.php +2 -2
includes.php CHANGED
@@ -199,6 +199,14 @@ function yarpp_admin_menu() {
199
  add_action("load-$hook",'yarpp_load_thickbox');
200
  }
201
 
 
 
 
 
 
 
 
 
202
  function yarpp_load_thickbox() {
203
  wp_enqueue_script( 'thickbox' );
204
  if (function_exists('wp_enqueue_style')) {
199
  add_action("load-$hook",'yarpp_load_thickbox');
200
  }
201
 
202
+ function yarpp_settings_link($links, $file) {
203
+ $this_plugin = dirname(plugin_basename(__FILE__)) . '/yarpp.php';
204
+ if($file == $this_plugin) {
205
+ $links[] = '<a href="options-general.php?page='.dirname(plugin_basename(__FILE__)).'/options.php">' . __('Settings', 'yarpp') . '</a>';
206
+ }
207
+ return $links;
208
+ }
209
+
210
  function yarpp_load_thickbox() {
211
  wp_enqueue_script( 'thickbox' );
212
  if (function_exists('wp_enqueue_style')) {
readme.txt CHANGED
@@ -7,7 +7,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=66G4D
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 2.3
9
  Tested up to: 2.8.4
10
- Stable tag: 3.0.12
11
 
12
  Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
13
 
@@ -148,6 +148,8 @@ If you are a bilingual speaker of English and another language and an avid user
148
 
149
  == Changelog ==
150
 
 
 
151
  = 3.0.12 =
152
  * Yet another DISQUS note... sigh.
153
  * Changed [default markup](http://wordpress.org/support/topic/307890) to be make the output validate better.
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 2.3
9
  Tested up to: 2.8.4
10
+ Stable tag: 3.0.13
11
 
12
  Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
13
 
148
 
149
  == Changelog ==
150
 
151
+ = 3.0.13 =
152
+ * Quick immediate bugfix to 3.0.12
153
  = 3.0.12 =
154
  * Yet another DISQUS note... sigh.
155
  * Changed [default markup](http://wordpress.org/support/topic/307890) to be make the output validate better.
yarpp.php CHANGED
@@ -3,13 +3,13 @@
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://mitcho.com/code/yarpp/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
6
- Version: 3.0.12
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=66G4DATK4999L&item_name=mitcho%2ecom%2fcode%3a%20donate%20to%20Michael%20Yoshitaka%20Erlewine&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&charset=UTF%2d8
10
  */
11
 
12
- define('YARPP_VERSION','3.0.12');
13
 
14
  require_once('includes.php');
15
  require_once('related-functions.php');
3
  Plugin Name: Yet Another Related Posts Plugin
4
  Plugin URI: http://mitcho.com/code/yarpp/
5
  Description: Returns a list of related entries based on a unique algorithm for display on your blog and RSS feeds. A templating feature allows customization of the display.
6
+ Version: 3.0.13
7
  Author: mitcho (Michael Yoshitaka Erlewine)
8
  Author URI: http://mitcho.com/
9
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=66G4DATK4999L&item_name=mitcho%2ecom%2fcode%3a%20donate%20to%20Michael%20Yoshitaka%20Erlewine&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&charset=UTF%2d8
10
  */
11
 
12
+ define('YARPP_VERSION','3.0.13');
13
 
14
  require_once('includes.php');
15
  require_once('related-functions.php');