将单个APIX转换为固定链接中的破折号

时间:2017-03-19 作者:Fabbio

我注意到,默认情况下,如果我创建一个标题为“It’s great”的页面,生成的永久链接将是its-great. 我希望它变成it-s-great 默认情况下。

我在哪里可以改变这种行为?

1 个回复
最合适的回答,由SO网友:birgire 整理而成

它是用sanitize_title_with_dashes() 通过sanitize_title 优先级为10的过滤器(source), 因此,您可以将其替换为破折号,然后再替换为:

add_filter( \'sanitize_title\', function( $title )
{
    return str_replace( "\'", "-", $title );
}, 9 );

相关推荐

Permalinks - Archives

WordPress文档说:WordPress offers you the ability to create a custom URL structure for your permalinks and archives. https://codex.wordpress.org/Settings_Permalinks_Screen 我看到此屏幕将如何为特定帖子/页面创建永久链接,但我没有看到此设置屏幕上关于如何为存档帖子/页面创建链接的任何其他详细信息。有人能澄清一下吗?