Wordpress 永久链接显示为已更新,但所有链接仍指向旧的永久链接

Wordpress Permalinks showing as updated, but all links still point to old permalink

我有一个自定义分类设置,称为产品类别。如果我创建一个类别,例如“牛”并将 slug 设置为 /cattle/ - 当我转到站点时。com/product-category/cattle 它工作正常。

但是,如果我随后进入 wp-admin,并将类别的 slug 编辑为 /cattle-feed/,则指向该特定类别的所有链接仍显示为 /cattle/ - 两者都在管理员中面板(如果我在类别上单击“查看”),在 wp-menu 中,以及在使用“get_category_link()”时在前端。

/cattle/ 变成 404(它应该)。 /cattle-feed/ 成为正确的分类类别存档(它应该)。 admin、wp-menu 和前端的所有链接转到/cattle/,但正确设置为/cattle-feed/

这是分类代码:

 
add_action( 'init', 'west_create_products_category_taxonomy', 0 );
 
//create a custom taxonomy name it subjects for your posts
 
function west_create_products_category_taxonomy() {
  
  $labels = array(
    'name' => _x( 'Product Categories', 'taxonomy general name' ),
    'singular_name' => _x( 'Product Category', 'taxonomy singular name' ),
    'search_items' =>  __( 'Search Categories' ),
    'all_items' => __( 'All Categories' ),
    'parent_item' => __( 'Parent Category' ),
    'parent_item_colon' => __( 'Parent Category:' ),
    'edit_item' => __( 'Edit Category' ), 
    'update_item' => __( 'Update Category' ),
    'add_new_item' => __( 'Add New Category' ),
    'new_item_name' => __( 'New Category Name' ),
    'menu_name' => __( 'Product Categories' ),
  );    
 
// Now register the taxonomy
  register_taxonomy('product_category',array('products', 'post'), array(
    'hierarchical' => true,
    'labels' => $labels,
    'show_ui' => true,
    'show_in_rest' => true,
    'show_admin_column' => true,
    'query_var' => true,
    'has_archive' => true,
    'rewrite' => array( 'slug' => 'product-category' ),
  ));
 
}

我试过刷新永久链接。我在这里错过了什么?

事实证明这是 WPML 插件的问题,它阻止了 slugs 的更新。解决方法是进入 WPML > 支持 > 疑难解答,然后按下“清理”下的所有按钮。 (他们的支持让我全力以赴!)。

荒谬,但是嘿嘿 - 它已经解决了!