大家都知道,在 WordPress 别名 中,加入英文标点时,会都转换为 - ,那么我们在转换完了之后,再加上.html 就没事了
在 functions.php
里加
// 自动为别名添加-html 别名后五位中有-html,则转换成.html
add_filter('sanitize_title', 'sanitize_title_with_dot_dashes');
function sanitize_title_with_dot_dashes($title, $raw_title = '', $context = 'display') {
global $post_type;
if ($post_type == 'post' || $post_type == 'bulletin') { //当文章类型为 文章 或 自定义文章的时候
if (wp_is_post_revision($post_id)) return false;
if (substr($title, -5) !== '.html') { // 如果别名最后 五位 不是 .html
$title = $title . '.html'; // 则加上.html
}
}
if (substr($title, -5) === '-html') { // 如果别名 最后五位 是 -html
$title = substr($title, 0, -5) . '.html'; // 替换 -html 为 .html
}
return $title;
}
将固定链接设置为 /%postname%