Yet Another Related Posts Plugin (YARPP) - Version 3.1.5

Version Description

  • Quick bugfix to new widget template (removed extra quote).
Download this release

Release Info

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

Code changes from version 3.1.4 to 3.1.5

Files changed (3) hide show
  1. readme.txt +3 -1
  2. template-widget.php +1 -1
  3. yarpp.php +2 -2
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.8
9
  Tested up to: 2.9.1
10
- Stable tag: 3.1.4
11
  Text Domain: yarpp
12
 
13
  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.
@@ -152,6 +152,8 @@ If you are a bilingual speaker of English and another language and an avid user
152
 
153
  == Changelog ==
154
 
 
 
155
  = 3.1.4 =
156
  * Improved widget code
157
  * Localization improvements - descriptions can now be localized
7
  Tags: related, posts, post, pages, page, RSS, feed, feeds
8
  Requires at least: 2.8
9
  Tested up to: 2.9.1
10
+ Stable tag: 3.1.5
11
  Text Domain: yarpp
12
 
13
  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.
152
 
153
  == Changelog ==
154
 
155
+ = 3.1.5 =
156
+ * Quick bugfix to new widget template (removed extra quote).
157
  = 3.1.4 =
158
  * Improved widget code
159
  * Localization improvements - descriptions can now be localized
template-widget.php CHANGED
@@ -4,7 +4,7 @@ if ($related_query->have_posts()) {
4
  $output .= '<ol>';
5
  while ($related_query->have_posts()) {
6
  $related_query->the_post();
7
- $output .= '<li><a href="'.get_permalink().'" rel="bookmark">"'.get_the_title().'</a>';
8
  // $output .= ' ('.round(get_the_score(),3).')';
9
  $output .= '</li>';
10
  }
4
  $output .= '<ol>';
5
  while ($related_query->have_posts()) {
6
  $related_query->the_post();
7
+ $output .= '<li><a href="'.get_permalink().'" rel="bookmark">'.get_the_title().'</a>';
8
  // $output .= ' ('.round(get_the_score(),3).')';
9
  $output .= '</li>';
10
  }
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.1.4
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.1.4');
13
  define('YARPP_DIR',dirname(__FILE__));
14
 
15
  require_once(YARPP_DIR.'/includes.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.1.5
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.1.5');
13
  define('YARPP_DIR',dirname(__FILE__));
14
 
15
  require_once(YARPP_DIR.'/includes.php');