Version Description
- Fixed: restored
do_shortcode
filter on term descriptions
Download this release
Release Info
Developer | katzwebdesign |
Plugin | Rich Text Tags |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.5.1
- readme.txt +9 -0
- rich-text-tags.php +9 -3
readme.txt
CHANGED
@@ -31,8 +31,14 @@ Use the WordPress functions `tag_description()` and `category_description()` in
|
|
31 |
= What is the license of this plugin? =
|
32 |
* This plugin is released under a GPL license.
|
33 |
|
|
|
|
|
|
|
34 |
== Upgrade Notice ==
|
35 |
|
|
|
|
|
|
|
36 |
= 1.5 =
|
37 |
* The plugin now requires WordPress 3.3
|
38 |
|
@@ -71,6 +77,9 @@ Use the WordPress functions `tag_description()` and `category_description()` in
|
|
71 |
|
72 |
== Changelog ==
|
73 |
|
|
|
|
|
|
|
74 |
= 1.5 =
|
75 |
* The plugin now uses WordPress's built-in <a href="http://codex.wordpress.org/Function_Reference/wp_editor" rel="nofollow">wp_editor()</a> and requires WordPress 3.3
|
76 |
* Added localization support (multiple languages)
|
31 |
= What is the license of this plugin? =
|
32 |
* This plugin is released under a GPL license.
|
33 |
|
34 |
+
= Neat plugin page image. =
|
35 |
+
Thanks, it's by <a href="http://www.flickr.com/photos/laurenmanning/5659535988/" rel="nofollow">Lauren Manning</a>.
|
36 |
+
|
37 |
== Upgrade Notice ==
|
38 |
|
39 |
+
= 1.5.1 =
|
40 |
+
* Fixed: restored `do_shortcode` filter on term descriptions
|
41 |
+
|
42 |
= 1.5 =
|
43 |
* The plugin now requires WordPress 3.3
|
44 |
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
+
= 1.5.1 =
|
81 |
+
* Fixed: restored `do_shortcode` filter on term descriptions
|
82 |
+
|
83 |
= 1.5 =
|
84 |
* The plugin now uses WordPress's built-in <a href="http://codex.wordpress.org/Function_Reference/wp_editor" rel="nofollow">wp_editor()</a> and requires WordPress 3.3
|
85 |
* Added localization support (multiple languages)
|
rich-text-tags.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Rich Text Tags, Categories, and Taxonomies
|
|
4 |
Plugin URI: http://www.seodenver.com/rich-text-tags/
|
5 |
Description: This plugin offers rich text editing capabilities for descriptions of tags, categories, and taxonomies.
|
6 |
Author: Katz Web Services, Inc.
|
7 |
-
Version: 1.5
|
8 |
Author URI: http://www.katzwebservices.com
|
9 |
*/
|
10 |
|
@@ -51,8 +51,14 @@ function kws_rich_text_tags() {
|
|
51 |
|
52 |
if($pagenow == 'edit-tags.php' && isset($_REQUEST['action']) && $_REQUEST['action'] == 'edit' && empty($_REQUEST['taxonomy'])) {
|
53 |
add_action('edit_term','kws_rt_taxonomy_save');
|
54 |
-
}
|
55 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
}
|
57 |
}
|
58 |
|
4 |
Plugin URI: http://www.seodenver.com/rich-text-tags/
|
5 |
Description: This plugin offers rich text editing capabilities for descriptions of tags, categories, and taxonomies.
|
6 |
Author: Katz Web Services, Inc.
|
7 |
+
Version: 1.5.1
|
8 |
Author URI: http://www.katzwebservices.com
|
9 |
*/
|
10 |
|
51 |
|
52 |
if($pagenow == 'edit-tags.php' && isset($_REQUEST['action']) && $_REQUEST['action'] == 'edit' && empty($_REQUEST['taxonomy'])) {
|
53 |
add_action('edit_term','kws_rt_taxonomy_save');
|
54 |
+
}
|
55 |
+
}
|
56 |
+
|
57 |
+
// Enable shortcodes in category, taxonomy, tag descriptions
|
58 |
+
if(function_exists('term_description')) {
|
59 |
+
add_filter('term_description', 'do_shortcode');
|
60 |
+
} else {
|
61 |
+
add_filter('category_description', 'do_shortcode');
|
62 |
}
|
63 |
}
|
64 |
|