无法在WPML

时间:2017-06-07 10:35:33

标签: php wordpress wpml

我在WPML论坛上提出了这个问题,但希望有人能够提供协助。

我正在尝试将slug翻译为自定义帖子类型

英文网址为http://brigade-electronics.com/nl/products/backeye360/

翻译的网址应为http://brigade-electronics.com/nl/producten/backeye360/

相反,在启用translate slug选项

后导航到URL时出现404错误

重复此问题的步骤:

  • 点击WPML - >翻译选项
  • 启用翻译自定义帖子slugs(通过WPML字符串翻译)。
  • 在自定义帖子设置下(在同一页面上)点击翻译复选框
  • 为每种语言添加了翻译的slug
  • 点击保存
  • 导航到前端,仅在产品部分看到404错误。

我已在故障排除页面中运行所有选项,以清理数据库。

这似乎只适用于产品部分中的某些页面。最奇怪的部分是该网站的加拿大部分,因为术语“产品”是英文的,因此无论是否有翻译后的slugs,URL都保持不变,但是,我仍然在这些页面上得到404错误。 / p>

值得注意的是,所有其他自定义帖子类型都可以正常运行。

自定义帖子类型已以标准方式注册

function register_products_post_type() {

    $labels = array(
        'name' => __( 'Products', '' ),
        'singular_name' => __( 'Product', '' )
    );

    $args = array(
        'label' => __( 'Products', '' ),
        'labels' => $labels,
        'description' => '',
        'public' => true,
        'publicly_queryable' => true,
        'show_ui' => true,
        'show_in_rest' => false,
        'rest_base' => '',
        'has_archive' => false,
        'show_in_menu' => true,
        'exclude_from_search' => false,
        'capability_type' => 'post',
        'map_meta_cap' => true,
        'hierarchical' => true,
        'rewrite' => array( 'slug' => 'products', 'with_front' => false ),
        'query_var' => true,
        'menu_position' => 6,
        'menu_icon' => 'dashicons-cart',
        'supports' => array( 'title', 'thumbnail', 'page-attributes' )
    );

    register_post_type( 'products', $args );

}
add_action( 'init', 'register_products_post_type' );

根据以下答案,上述代码已更新为

add_action( 'init', 'create_post_type');
function create_post_type() {
    $labels = array(
        'name'               => _x( 'Products', 'general name of the post type' ),
        'singular_name'      => _x( 'Products', 'name for one object of this post type' ),

    );
    $args = array(
        'labels' =>  $labels, // An array that defines the different labels assigned to the custom post type
        'public' =>  true, // To show the custom post type on the WordPress dashboard
        'supports' => array( 'title', 'thumbnail', 'page-attributes' ),
        'has_archive' =>  true, //Enables the custom post type archive at
        'hierarchical' =>  true, //Enables the custom post type to have a hierarchy
        'rewrite' => array( 'slug' =>  _x('products', 'URL slug')),
    );
    register_post_type( 'products', $args );
    }

slug的新翻译出现在'String Translation'部分,更新这些字符串时,我得到相同的404错误。如果我将这些作为英语留下,产品部分的工作没有问题。

由于

2 个答案:

答案 0 :(得分:1)

试试这个

    add_action( 'init', 'create_post_type');
    function create_post_type() {
        $labels = array(
        'name'               => _x( 'Products', 'general name of the post type' ),
        'singular_name'      => _x( 'Products', 'name for one object of this post type' ),

       );
       $args = array(
         'labels' =>  $labels, // An array that defines the different labels assigned to the custom post type
         'public' =>  true, // To show the custom post type on the WordPress dashboard
         'supports' => array( 'title', 'thumbnail', 'page-attributes' ),
         'has_archive' =>  true, //Enables the custom post type archive at 
         'hierarchical' =>  true, //Enables the custom post type to have a hierarchy
         'rewrite' => array( _x('slug' => 'products'), 'with_front' => false ),
    );
    register_post_type( 'products', $args );
    }

答案 1 :(得分:0)

你刷新了重写规则吗?

转到设置>永久链接并刷新。

  

注意:如果在插件中注册帖子类型,请致电   激活和取消激活挂钩中的flush_rewrite_rules()(参见   下面激活刷新重写)。如果flush_rewrite_rules()不是   使用,那么你将不得不手动转到设置>永久链接和   在自定义帖子类型之前刷新永久链接结构   显示正确的结构。

来源:https://codex.wordpress.org/Function_Reference/register_post_type