更改自定义帖子类型名称(用于翻译)

时间:2015-12-23 11:16:52

标签: php wordpress url custom-post-type

我想在Wordpress中更改“service”和“testimonial”url堆。因为我的域名是土耳其语,我的页面也是土耳其语,如下所示:“http://www.sitename.com/service/sirketler-hukuku/”。但是,如您所知,“服务”和“推荐”字样是英文的。所以它看起来像拔牙。

enter image description here

1 个答案:

答案 0 :(得分:1)

在代码的某些部分,将调用函数register_post_type(),每个函数用于推荐和服务。

您需要更改此函数的参数,特别是'rewrite'参数。如果您在自己的代码中编写这些函数,则更改很容易。如果不希望主题或插件有过滤器,您可以更改参数。

类似

register_post_type( /*other parameters*/, 'rewrite' => array( 'slug' => 'turkish for testimonial') );

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

了解详情