在WordPress中将单词添加到自定义分类的术语

时间:2019-01-15 11:14:43

标签: wordpress url-rewriting custom-taxonomy slug taxonomy-terms

我有一个称为“地点”的分类法,该分类法中的术语“ slug”可能类似于:

'Code'

我如何在子弹的第三部分添加一个单词,但仍然显示地名?

例如,如果要添加单词“ place”,将是这样的:

alpha2

'Country Code'

明确一点:我要修改的部分是术语标题部分,而不是分类法标题部分。

1 个答案:

答案 0 :(得分:0)

将此插件用于自定义永久链接。  https://wordpress.org/plugins/custom-permalinks/

或者您可以使用此代码创建自定义的永久链接

function reset_permalinks() {
global $wp_rewrite;
$wp_rewrite->set_permalink_structure( '/%year%/%monthnum%/%postname%/' );
}
add_action( 'init', 'reset_permalinks' );