Changeset 143506
- Timestamp:
- 08/06/2009 08:55:59 PM (17 years ago)
- Location:
- backlinks
- Files:
-
- 2 edited
- 4 copied
-
tags/1.1.2 (copied) (copied from backlinks/trunk)
-
tags/1.1.2/backlinks.php (copied) (copied from backlinks/trunk/backlinks.php) (2 diffs)
-
tags/1.1.2/options.php (copied) (copied from backlinks/trunk/options.php)
-
tags/1.1.2/readme.txt (copied) (copied from backlinks/trunk/readme.txt) (2 diffs)
-
trunk/backlinks.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
backlinks/tags/1.1.2/backlinks.php
r108176 r143506 5 5 Description: A plugin to show the google blog search backlinks for the current page. 6 6 Author: Divided By Zer0 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author URI: http://dbzer0.com/ 9 9 */ … … 12 12 add_action('plugins_loaded', 'add_backlinks_widget'); // Activate our widget. 13 13 $backlinks_options = get_option('backlinks'); 14 add_action('admin_ head', 'backlinks_options');14 add_action('admin_menu', 'backlinks_options'); 15 15 16 16 //set initial defaults -
backlinks/tags/1.1.2/readme.txt
r108174 r143506 5 5 Requires at least: 2.3 6 6 Tested up to: 2.7.1 7 Stable tag: 1.1 7 Stable tag: 1.1.2 8 8 9 9 A simple function to show blog posts linking back to any article, similar to Google Backlinks … … 66 66 * At the moment the plugin returns only the most recent 100 links 67 67 * You can link directly to the backlinks in any page by using the #backlinks anchor 68 69 == Changelog == 70 71 = 1.1.2 = 72 73 Updated for WP 2.8+. Plugin page now accessible 74 75 = 1.1 = 76 77 Added option to hide backlinks when there are no results 78 79 = 1.0 = 80 81 Widget now has full capability 82 83 = 0.9 = 84 85 Enabled Caching 86 87 = 0.8 = 88 89 Enabled Custom Styling Capability 90 91 = 0.5 = 92 93 Added Options page 94 95 = 0.3 = 96 97 Created basic widget 98 99 = 0.2 = 100 101 Basic Plugin created -
backlinks/trunk/backlinks.php
r108176 r143506 5 5 Description: A plugin to show the google blog search backlinks for the current page. 6 6 Author: Divided By Zer0 7 Version: 1.1. 17 Version: 1.1.2 8 8 Author URI: http://dbzer0.com/ 9 9 */ … … 12 12 add_action('plugins_loaded', 'add_backlinks_widget'); // Activate our widget. 13 13 $backlinks_options = get_option('backlinks'); 14 add_action('admin_ head', 'backlinks_options');14 add_action('admin_menu', 'backlinks_options'); 15 15 16 16 //set initial defaults -
backlinks/trunk/readme.txt
r108174 r143506 5 5 Requires at least: 2.3 6 6 Tested up to: 2.7.1 7 Stable tag: 1.1 7 Stable tag: 1.1.2 8 8 9 9 A simple function to show blog posts linking back to any article, similar to Google Backlinks … … 66 66 * At the moment the plugin returns only the most recent 100 links 67 67 * You can link directly to the backlinks in any page by using the #backlinks anchor 68 69 == Changelog == 70 71 = 1.1.2 = 72 73 Updated for WP 2.8+. Plugin page now accessible 74 75 = 1.1 = 76 77 Added option to hide backlinks when there are no results 78 79 = 1.0 = 80 81 Widget now has full capability 82 83 = 0.9 = 84 85 Enabled Caching 86 87 = 0.8 = 88 89 Enabled Custom Styling Capability 90 91 = 0.5 = 92 93 Added Options page 94 95 = 0.3 = 96 97 Created basic widget 98 99 = 0.2 = 100 101 Basic Plugin created
Note: See TracChangeset
for help on using the changeset viewer.