Version Description
: August 14, 2014 = * Fixed a small CSS default rule.
Download this release
Release Info
Developer | barrykooij |
Plugin | Related Posts for WordPress |
Version | 1.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.2.0 to 1.2.1
- classes/class-settings.php +1 -1
- readme.txt +4 -1
- related-posts-for-wp.php +2 -2
classes/class-settings.php
CHANGED
@@ -25,7 +25,7 @@ class RP4WP_Settings {
|
|
25 |
|
26 |
// CSS default
|
27 |
$css_default_lines = array();
|
28 |
-
$css_default_lines[] = '.rp4wp-related-posts ul {padding:0;margin:0;float:left;}';
|
29 |
$css_default_lines[] = '.rp4wp-related-posts li{list-style:none;padding-bottom:20px}';
|
30 |
$css_default_lines[] = '.rp4wp-related-posts li p {margin:0;padding:0}';
|
31 |
$css_default_lines[] = '.rp4wp-related-post-image{width:35%;padding-right:25px;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;float:left;}';
|
25 |
|
26 |
// CSS default
|
27 |
$css_default_lines = array();
|
28 |
+
$css_default_lines[] = '.rp4wp-related-posts ul {width:100%padding:0;margin:0;float:left;}';
|
29 |
$css_default_lines[] = '.rp4wp-related-posts li{list-style:none;padding-bottom:20px}';
|
30 |
$css_default_lines[] = '.rp4wp-related-posts li p {margin:0;padding:0}';
|
31 |
$css_default_lines[] = '.rp4wp-related-post-image{width:35%;padding-right:25px;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;float:left;}';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.barrykooij.com/
|
|
4 |
Tags: related posts for wordpress, related posts for wp, simple related posts, easy related posts, related posts, related, relations, internal links, seo
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 3.9.2
|
7 |
-
Stable tag: 1.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -73,6 +73,9 @@ There is one custom table created for the post cache, this table will however no
|
|
73 |
|
74 |
== Changelog ==
|
75 |
|
|
|
|
|
|
|
76 |
= 1.2.0 : August 14, 2014 =
|
77 |
* Related Posts heading text is now a setting.
|
78 |
* Amount of words in excerpt is now a setting.
|
4 |
Tags: related posts for wordpress, related posts for wp, simple related posts, easy related posts, related posts, related, relations, internal links, seo
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 3.9.2
|
7 |
+
Stable tag: 1.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
73 |
|
74 |
== Changelog ==
|
75 |
|
76 |
+
= 1.2.1 : August 14, 2014 =
|
77 |
+
* Fixed a small CSS default rule.
|
78 |
+
|
79 |
= 1.2.0 : August 14, 2014 =
|
80 |
* Related Posts heading text is now a setting.
|
81 |
* Amount of words in excerpt is now a setting.
|
related-posts-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Related Posts for WordPress
|
4 |
Plugin URI: http://www.barrykooij.com/
|
5 |
Description: Related Posts for WordPress, related posts that perform!
|
6 |
-
Version: 1.2.
|
7 |
Author: Barry Kooij
|
8 |
Author URI: http://www.barrykooij.com/
|
9 |
License: GPL v3
|
@@ -26,7 +26,7 @@ class RP4WP {
|
|
26 |
|
27 |
private static $instance = null;
|
28 |
|
29 |
-
const VERSION = '1.2.
|
30 |
|
31 |
/**
|
32 |
* @var RP4WP_Settings
|
3 |
Plugin Name: Related Posts for WordPress
|
4 |
Plugin URI: http://www.barrykooij.com/
|
5 |
Description: Related Posts for WordPress, related posts that perform!
|
6 |
+
Version: 1.2.1
|
7 |
Author: Barry Kooij
|
8 |
Author URI: http://www.barrykooij.com/
|
9 |
License: GPL v3
|
26 |
|
27 |
private static $instance = null;
|
28 |
|
29 |
+
const VERSION = '1.2.1';
|
30 |
|
31 |
/**
|
32 |
* @var RP4WP_Settings
|