Example #1
0
File: xposts.php Project: Tug/o2
 /**
  * X-posts permalinks pages are useless, let's redirect them to the original post
  *
  * @uses get_post_meta, wp_redirect
  * @return void
  */
 function redirect_permalink($query)
 {
     if (!parent::should_process_terms()) {
         return;
     }
     $post_id = get_the_ID();
     if (is_single() && ($link = get_post_meta($post_id, '_xpost_original_permalink', true))) {
         wp_redirect($link);
         exit;
     }
 }