更改WordPress名称重复标题(URL)

时间:2018-09-09 作者:Jerry

我有个问题。有人知道如何更改重复标题创建的url吗?

如果我创建两个帖子,都命名为test,那么地址就是一个例子。com/测试和示例。com/测试-2

我希望它被命名为test和test2,没有-符号。它看起来更好,因为-2的意思是“duh,你做了一个副本”,但如果它被称为Manning 2,例如,“ah,Manning nr 2”

将有很多这样的名称,因为我使用标题作为用户名,而且许多名称都相同;)

1 个回复
SO网友:jas

有关详细信息,请参阅以下答案:Remove Dash/Hyphen From Wordpress CustomPosttype Permalink

在您的功能中。php:

function no_dashes($title) {
    return str_replace(\'-\', \'\', $title);
}
add_filter(\'sanitize_title\', \'no_dashes\' , 9999);
对于特定类型的职位:

function no_dashes( $slug, $post_ID, $post_status, $post_type ) {

    if( $post_type == "page" ) {
        $slug = str_replace( \'-\', \'\', $slug);
    }
    return $slug;
}
add_filter( "wp_unique_post_slug", "no_dashes", 10, 4 );

结束