2016-07-04 127 views
1

使用頁面和崗位類型相同蛞蝓名字時,我有一些問題,在WordPress固定鏈接。衝突的WordPress

我已經創建了一個有固定鏈接頁面「網格服務」: example.com/grid-services/

costum後鍵入「市場」,經過

我也註冊了,我創建了一個名爲市場「網格服務」,用固定鏈接: example.com/markets/grid-services/

的問題 當我嘗試訪問example.com/grid-services/ URL,它全自動重定向我例子.COM /市場/網格服務/頁URL

我曾嘗試 當我註冊後型我曾試圖改變diferent結合的代碼,但似乎沒有任何工作。

register_post_type('markets', 
array(
    'labels' => $labels, 
    'public' => true, 
    'supports' => $supports, 
    'hierarchical' => true, 
    'rewrite' => array("slug" => "markets"), 
    'has_archive' => false, 
) 

);

可能是什麼問題?

+0

添加過濾器'wp_insert_post_data」。在那裏你可以添加一些額外的價值與slu。。這將解決你的問題。 – Mickey

+1

對不起,這是我在wordpress中的第一個項目,請問您能更具體嗎? – ucu13

+0

去通過下面的文章 - https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_insert_post_data 希望這有助於。 – Mickey

回答

0

Finaly我有找到一個簡單的答案,我只是刪除從costum職位的固定鏈接加入 這2設置

'public' => false, 
    'show_ui' => true, 

現在看起來好像沒問題。 謝謝你的幫助。

0

給你另一種功能,它可以幫助你 -

function wp_cpt_unique_post_slug($slug, $post_ID, $post_status, $post_type, $post_parent, $original_slug) { 
    if (in_array($post_status, array('draft', 'pending', 'auto-draft'))) 
     return $slug; 

    global $wpdb, $wp_rewrite; 

    // store slug made by original function 
    $wp_slug = $slug; 

    // reset slug to original slug 
    $slug = $original_slug; 

    $feeds = $wp_rewrite->feeds; 
    if (! is_array($feeds)) 
     $feeds = array(); 

    $hierarchical_post_types = get_post_types(array('hierarchical' => true)); 
    if ('attachment' == $post_type) { 
     // Attachment slugs must be unique across all types. 
     $check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND ID != %d LIMIT 1"; 
     $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $slug, $post_ID)); 

     if ($post_name_check || in_array($slug, $feeds) || apply_filters('wp_unique_post_slug_is_bad_attachment_slug', false, $slug)) { 
      $suffix = 2; 
      do { 
       $alt_post_name = substr ($slug, 0, (200 - (strlen($suffix) + 1))) . "-$suffix"; 
       $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $alt_post_name, $post_ID)); 
       $suffix++; 
      } while ($post_name_check); 
      $slug = $alt_post_name; 
     } 
    } elseif (in_array($post_type, $hierarchical_post_types)) { 
     if ('nav_menu_item' == $post_type) 
      return $slug; 
     // Page slugs must be unique within their own trees. Pages are in a separate 
     // namespace than posts so page slugs are allowed to overlap post slugs. 
     $check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND post_type = %s AND ID != %d AND post_parent = %d LIMIT 1"; 
     $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $slug, $post_type, $post_ID, $post_parent)); 

     if ($post_name_check || in_array($slug, $feeds) || preg_match("@^($wp_rewrite->pagination_base)?\[email protected]", $slug) || apply_filters('wp_unique_post_slug_is_bad_hierarchical_slug', false, $slug, $post_type, $post_parent)) { 
      $suffix = 2; 
      do { 
       $alt_post_name = substr($slug, 0, (200 - (strlen($suffix) + 1))) . "-$suffix"; 
       $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $alt_post_name, $post_type, $post_ID, $post_parent)); 
       $suffix++; 
      } while ($post_name_check); 
      $slug = $alt_post_name; 
     } 
    } else { 
     // Post slugs must be unique across all posts. 
     $check_sql = "SELECT post_name FROM $wpdb->posts WHERE post_name = %s AND post_type = %s AND ID != %d LIMIT 1"; 
     $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $slug, $post_type, $post_ID)); 

     if ($post_name_check || in_array($slug, $feeds) || apply_filters('wp_unique_post_slug_is_bad_flat_slug', false, $slug, $post_type)) { 
      $suffix = 2; 
      do { 
       $alt_post_name = substr($slug, 0, (200 - (strlen($suffix) + 1))) . "-$suffix"; 
       $post_name_check = $wpdb->get_var($wpdb->prepare($check_sql, $alt_post_name, $post_type, $post_ID)); 
       $suffix++; 
      } while ($post_name_check); 
      $slug = $alt_post_name; 
     } 
    } 

    return $slug; 
} 
add_filter('wp_unique_post_slug', 'wp_cpt_unique_post_slug', 10, 6);