我们创建了自定义分类的自定义帖子类型。因此,我们在其中创建了另一种类型的术语。
但是,不同类型的分类法所用的帖子名称URL相同。它没有工作。另外,我们使用了WPML插件。
EX。术语分类:-放大,爆炸
带有第一项URL的帖子名称:-https://testdomain.com/services/imploade/postname
带有第二个URL的帖子名称:-https://testdomain.com/services/expload/postname
答案 0 :(得分:3)
您可以使用wpml_is_redirected
挂钩停止自定义帖子类型的WPML重定向。
请参见以下示例:
function redirect_wpml_post( $redirect, $post_id, $query ) {
if ( 'Your-Post-Type-Slug' === $query->get( 'post_type' ) ) {
return false;
}
return $redirect;
};
add_filter( 'wpml_is_redirected', 'redirect_wpml_post', 10, 3 );