Description: Allows users to point WordPress objects (posts, pages, custom post types) to a URL of your choosing. Inspired by and backwards-compatible with <a href="http://txfx.net/wordpress-plugins/page-links-to/">Page Links To</a> by Mark Jaquith. Written for use on WordPress.com VIP.
Version: 1.0.2
Version: 1.0.3
Author: Erick Hitter (Oomph, Inc.)
Author URI: http://www.thinkoomph.com/
...
...
@@ -26,8 +26,8 @@ class external_permalinks_redux {
/*
* Class variables
*/
var$meta_key_target;
var$meta_key_type;
var$meta_key_target='_links_to';
var$meta_key_type='_links_to_type';
var$status_codes;
/*
...
...
@@ -36,7 +36,7 @@ class external_permalinks_redux {
* @return null
*/
function__construct(){
add_action('init',array($this,'action_init'));
add_action('init',array($this,'action_init'),0);// other init actions may rely on permalinks so filter early