预计阅读时间: < 1 分钟

    // 页面链接添加html后缀  放在functions.php中
    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';
        }
    }

此文章对你有帮助吗? 已有 1 人说这篇文章是有用的。