Changeset 175474
- Timestamp:
- 11/20/2009 07:16:47 AM (16 years ago)
- Location:
- page-tagger/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
page-tagger.js (modified) (1 diff)
-
page-tagger.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
page-tagger/trunk/README.txt
r175105 r175474 6 6 Requires at least: 2.8.4 7 7 Tested up to: 2.8.6 8 Stable tag: 0.3. 28 Stable tag: 0.3.3 9 9 10 10 Page Tagger is a Wordpress plugin which lets you tag your pages just like you do with your posts. It adds a tagging widget in the page-editing view in the admin interface. … … 24 24 == Changelog == 25 25 26 = 0.3.2 = 26 = 0.3.3 (Nov 20, 2009) = 27 * Fixed callback bug which was preventing the plugin from initialising on certain installations. 28 29 = 0.3.2 (Nov 18, 2009) = 27 30 * Fixed plugin conflict issue which was sometimes causing the tag editing interface to stop working. 28 31 29 = 0.3.1 =32 = 0.3.1 (Sep 8, 2009) = 30 33 * Plugin renamed to 'Page Tagger'. 31 34 32 = 0.3 =35 = 0.3 (Sep 8, 2009) = 33 36 * Plugin now works in Wordpress 2.8+. 34 37 * *If your page tags were no longer showing in tag clouds then you need to upgrade to this version (0.3) and then [follow instructions to restore the correct post counts for each tag](http://www.hiddentao.com/archives/2009/09/08/page-tags-0-3/).* 35 38 36 = 0.2 =39 = 0.2 (Apr 3, 2009) = 37 40 * Fixed a bug which was preventing tags added whilst editing pages from appearing in the tag cloud widget. 38 41 39 = 0.1 =42 = 0.1 (Jan 18, 2009) = 40 43 * The initial release. 41 44 -
page-tagger/trunk/page-tagger.js
r175100 r175474 3 3 Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/ 4 4 Description: Enables tagging for pages. 5 Version: 0.3. 25 Version: 0.3.3 6 6 Author: Ramesh Nair 7 7 Author URI: http://www.hiddentao.com/ -
page-tagger/trunk/page-tagger.php
r175100 r175474 22 22 Plugin URI: http://www.hiddentao.com/code/wordpress-page-tagger-plugin/ 23 23 Description: Enables tagging for pages. 24 Version: 0.3. 224 Version: 0.3.3 25 25 Author: Ramesh Nair 26 26 Author URI: http://www.hiddentao.com/ … … 184 184 * Initialise PageTags object. 185 185 */ 186 add_action('plugins_loaded', 'PageTagger::init');186 add_action('plugins_loaded',array('PageTagger','init')); 187 187
Note: See TracChangeset
for help on using the changeset viewer.