polylang – custom post slug by language
-
Hello,
Permalink settings : https://local.site.com/sample-post/
How can I translate the custom post slug for custom post ?
Is it possible to do with Polylang or should we use the same slug in all languages ?I would like use /fr/produits/slug-of-post and /en/products/slug-of-post
instead of /fr/ootp_products/slug-of-post and /en/ootp_products/slug-of-post
Actualy I create the custom post like that:function create_post_type_products() { register_taxonomy_for_object_type('category', 'ootp_products'); register_taxonomy_for_object_type('post_tag', 'ootp_products'); register_post_type('ootp_products', array( 'labels' => array( 'name' => __('ootp_products', 'html5blank'), 'singular_name' => __('Product', 'html5blank'), 'add_new' => __('Add New', 'html5blank'), 'add_new_item' => __('Add New Product', 'html5blank'), 'edit' => __('Edit', 'html5blank'), 'edit_item' => __('Edit Product', 'html5blank'), 'new_item' => __('New Product', 'html5blank'), 'view' => __('View Product', 'html5blank'), 'view_item' => __('View Product', 'html5blank'), 'search_items' => __('Search Product', 'html5blank'), 'not_found' => __('No Product found', 'html5blank'), 'not_found_in_trash' => __('No Product found in Trash', 'html5blank') ), 'query_var' => true, 'public' => true, 'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages 'has_archive' => false, 'rewrite' => array('slug' => 'ootp_products', 'with_front' => false), 'supports' => array( 'title' ), 'can_export' => true, // Allows export in Tools > Export 'taxonomies' => array( 'categories' ) )); }
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Thanks You.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘polylang – custom post slug by language’ is closed to new replies.