Plugin Directory

Changeset 143506


Ignore:
Timestamp:
08/06/2009 08:55:59 PM (17 years ago)
Author:
db0
Message:

Fixed options page for 2.8+ versions of WP. Changed the admin hook to admin_menu

Location:
backlinks
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • backlinks/tags/1.1.2/backlinks.php

    r108176 r143506  
    55Description: A plugin to show the google blog search backlinks for the current page.
    66Author: Divided By Zer0
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author URI: http://dbzer0.com/
    99*/
     
    1212add_action('plugins_loaded', 'add_backlinks_widget'); // Activate our widget.
    1313$backlinks_options = get_option('backlinks');
    14 add_action('admin_head', 'backlinks_options');
     14add_action('admin_menu', 'backlinks_options');
    1515
    1616//set initial defaults
  • backlinks/tags/1.1.2/readme.txt

    r108174 r143506  
    55Requires at least: 2.3
    66Tested up to: 2.7.1
    7 Stable tag: 1.1
     7Stable tag: 1.1.2
    88
    99A simple function to show blog posts linking back to any article, similar to Google Backlinks
     
    6666* At the moment the plugin returns only the most recent 100 links
    6767* You can link directly to the backlinks in any page by using the #backlinks anchor
     68
     69== Changelog ==
     70
     71= 1.1.2 =
     72
     73Updated for WP 2.8+. Plugin page now accessible
     74
     75= 1.1 =
     76
     77Added option to hide backlinks when there are no results
     78
     79= 1.0 =
     80
     81Widget now has full capability
     82
     83= 0.9 =
     84
     85Enabled Caching
     86
     87= 0.8 =
     88
     89Enabled Custom Styling Capability
     90
     91= 0.5 =
     92
     93Added Options page
     94
     95= 0.3 =
     96
     97Created basic widget
     98
     99= 0.2 =
     100
     101Basic Plugin created
  • backlinks/trunk/backlinks.php

    r108176 r143506  
    55Description: A plugin to show the google blog search backlinks for the current page.
    66Author: Divided By Zer0
    7 Version: 1.1.1
     7Version: 1.1.2
    88Author URI: http://dbzer0.com/
    99*/
     
    1212add_action('plugins_loaded', 'add_backlinks_widget'); // Activate our widget.
    1313$backlinks_options = get_option('backlinks');
    14 add_action('admin_head', 'backlinks_options');
     14add_action('admin_menu', 'backlinks_options');
    1515
    1616//set initial defaults
  • backlinks/trunk/readme.txt

    r108174 r143506  
    55Requires at least: 2.3
    66Tested up to: 2.7.1
    7 Stable tag: 1.1
     7Stable tag: 1.1.2
    88
    99A simple function to show blog posts linking back to any article, similar to Google Backlinks
     
    6666* At the moment the plugin returns only the most recent 100 links
    6767* You can link directly to the backlinks in any page by using the #backlinks anchor
     68
     69== Changelog ==
     70
     71= 1.1.2 =
     72
     73Updated for WP 2.8+. Plugin page now accessible
     74
     75= 1.1 =
     76
     77Added option to hide backlinks when there are no results
     78
     79= 1.0 =
     80
     81Widget now has full capability
     82
     83= 0.9 =
     84
     85Enabled Caching
     86
     87= 0.8 =
     88
     89Enabled Custom Styling Capability
     90
     91= 0.5 =
     92
     93Added Options page
     94
     95= 0.3 =
     96
     97Created basic widget
     98
     99= 0.2 =
     100
     101Basic Plugin created
Note: See TracChangeset for help on using the changeset viewer.