Wordpres 给page页面地址添加html后缀

Gavin Wu 2022年04月16日 8:04 Wordpress 624 Views

Wordpres 给page页面地址添加html后缀|微言心语
Wordpres page页面默认是没有后缀的,通常是以http://xx.com/page/的形式,从SEO的角度出发,给每个page地址添加html后缀更有利于收录的。将下面代码扔到主题function.php里。

1
2
3
4
5
6
7
8
// 页面链接添加html后缀
add_action('init', 'html_page_permalink', -1);
function html_page_permalink() {
    global $wp_rewrite;
    if ( !strpos($wp_rewrite->get_page_permastruct(), '.html')){
        $wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html';
    }
}

这时还不会生效,重新设置一下固定链接。就可以了。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

Top