Version Description
Download this release
Release Info
Developer | freediver |
Plugin | SEO Smart Links |
Version | 1.6.4 |
Comparing to | |
See all releases |
Code changes from version 1.6.3 to 1.6.4
- readme.txt +5 -17
- seo-links.php +3 -3
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: freediver
|
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
4 |
Tags: Post, posts, comments, links, seo, google, automatic
|
5 |
Requires at least: 2.3
|
6 |
-
Tested up to: 2.6.
|
7 |
Stable tag: trunk
|
8 |
|
9 |
SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags.
|
@@ -21,6 +21,9 @@ Everything happens completely transparent, and you can edit the options from the
|
|
21 |
|
22 |
|
23 |
Change log
|
|
|
|
|
|
|
24 |
v1.6.3
|
25 |
- Fixed issue with too short titles (now titles shorter then 4 characters are ignored)
|
26 |
- Targets are sorted by length and longer titles are linked to first
|
@@ -31,24 +34,9 @@ v1.6.2
|
|
31 |
v1.6
|
32 |
- Added option to process only single posts and pages
|
33 |
|
34 |
-
v1.5
|
35 |
-
- Added nofollow and new window options
|
36 |
-
|
37 |
-
v1.4
|
38 |
-
- Added option for custom keywrods. No you can specify unlimited numbers of your keywords and url's to link to
|
39 |
-
|
40 |
-
v1.3:
|
41 |
-
- Enabled caching for speeding queries up.
|
42 |
-
|
43 |
-
v1.2:
|
44 |
-
- Added limits options
|
45 |
-
- Fixed small bugs
|
46 |
|
47 |
-
v1.1:
|
48 |
-
- Fixed preg_replace() problem
|
49 |
|
50 |
-
|
51 |
-
- Initial release
|
52 |
|
53 |
== Credits ==
|
54 |
|
3 |
Donate link: https://www.networkforgood.org/donation/MakeDonation.aspx?ORGID2=520781390
|
4 |
Tags: Post, posts, comments, links, seo, google, automatic
|
5 |
Requires at least: 2.3
|
6 |
+
Tested up to: 2.6.3
|
7 |
Stable tag: trunk
|
8 |
|
9 |
SEO Smart Links can automatically link keywords and phrases in your posts and comments with corresponding posts, pages, categories and tags.
|
21 |
|
22 |
|
23 |
Change log
|
24 |
+
v1.6.4
|
25 |
+
- Fix in semantics
|
26 |
+
|
27 |
v1.6.3
|
28 |
- Fixed issue with too short titles (now titles shorter then 4 characters are ignored)
|
29 |
- Targets are sorted by length and longer titles are linked to first
|
34 |
v1.6
|
35 |
- Added option to process only single posts and pages
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
|
|
|
|
38 |
|
39 |
+
Plugin by Vladimir Prelovac. Need help with <a href="http://www.prelovac.com/vladimir/services">WordPress SEO</a>?
|
|
|
40 |
|
41 |
== Credits ==
|
42 |
|
seo-links.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: SEO Smart Links
|
5 |
-
Version: 1.6.
|
6 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/seo-smart-links
|
7 |
Author: Vladimir Prelovac
|
8 |
Author URI: http://www.prelovac.com
|
@@ -412,7 +412,7 @@ function SEOLinks_comment_text_filter($text) {
|
|
412 |
<input type="checkbox" name="post" $post/><label for="post"> Posts</label>
|
413 |
<ul><input type="checkbox" name="postself" $postself/><label for="postself"> Allow links to itself</label></ul>
|
414 |
<input type="checkbox" name="page" $page/><label for="page"> Pages</label>
|
415 |
-
<ul><input type="checkbox" name="pageself" $
|
416 |
<input type="checkbox" name="comment" $comment /><label for="comment"> Comments</label> <br>
|
417 |
|
418 |
<h4>Target</h4>
|
@@ -443,7 +443,7 @@ function SEOLinks_comment_text_filter($text) {
|
|
443 |
<h3>Limits</h3>
|
444 |
<p>You can limit the maximum number of links SEO Smart Links will generate per post. Set to 0 for no limit. </p>
|
445 |
Max Links: <input type="text" name="maxlinks" size="2" value="$maxlinks"/>
|
446 |
-
<p>You can also limit maximum number of links
|
447 |
Max Single: <input type="text" name="maxsingle" size="2" value="$maxsingle"/>
|
448 |
<br><br>
|
449 |
<h3>External Links</h3>
|
2 |
|
3 |
/*
|
4 |
Plugin Name: SEO Smart Links
|
5 |
+
Version: 1.6.4
|
6 |
Plugin URI: http://www.prelovac.com/vladimir/wordpress-plugins/seo-smart-links
|
7 |
Author: Vladimir Prelovac
|
8 |
Author URI: http://www.prelovac.com
|
412 |
<input type="checkbox" name="post" $post/><label for="post"> Posts</label>
|
413 |
<ul><input type="checkbox" name="postself" $postself/><label for="postself"> Allow links to itself</label></ul>
|
414 |
<input type="checkbox" name="page" $page/><label for="page"> Pages</label>
|
415 |
+
<ul><input type="checkbox" name="pageself" $pageself/><label for="pageself"> Allow links to itself</label></ul>
|
416 |
<input type="checkbox" name="comment" $comment /><label for="comment"> Comments</label> <br>
|
417 |
|
418 |
<h4>Target</h4>
|
443 |
<h3>Limits</h3>
|
444 |
<p>You can limit the maximum number of links SEO Smart Links will generate per post. Set to 0 for no limit. </p>
|
445 |
Max Links: <input type="text" name="maxlinks" size="2" value="$maxlinks"/>
|
446 |
+
<p>You can also limit maximum number of links created with the same keyword. Set to 0 for no limit. </p>
|
447 |
Max Single: <input type="text" name="maxsingle" size="2" value="$maxsingle"/>
|
448 |
<br><br>
|
449 |
<h3>External Links</h3>
|