0 ) { $this->monitor_post = $options['monitor_post']; // Only monitor if permalinks enabled if ( get_option( 'permalink_structure' ) ) { add_action( 'post_updated', array( &$this, 'post_updated' ), 11, 3 ); add_action( 'delete_post', array( &$this, 'post_deleted' ) ); add_action( 'edit_form_advanced', array( &$this, 'insert_old_post' ) ); add_action( 'edit_page_form', array( &$this, 'insert_old_post' ) ); } } } function insert_old_post() { global $post; $url = parse_url( get_permalink() ); $url = $url['path']; ?> post_status, array( 'publish', 'static' ) ) && $before != $after && $before != '/' ) { Red_Item::create( array( 'source' => $before, 'target' => $after, 'match' => 'url', 'red_action' => 'url', 'group' => $this->monitor_post ) ); } } } function post_deleted ($id) { $post = get_post ($id); if ($post->post_status == 'publish' || $post->post_status == 'static') { $url = get_permalink ($id); $slug = parse_url ($url); // Red_Item::create (array ('source' => $slug['path'], 'target' => '', 'match' => 'url', 'red_action' => 'error', 'group' => $this->monitor_post, 'action_code' => 410)); } } }