WordPress 页面链接添加html后缀

默认 WordPress 页面不能实现伪静态链接,比如:https://www.22vd.com/aboutu…

默认 WordPress 页面不能实现伪静态链接,比如:https://www.22vd.com/aboutus.HTML,手动在链接中添加“.html”,会自动转码为”-html”,但万能的 WordPress,你能想到的功能都会有相应的插件帮你实现。既然用插件可以实现,直接将插件中的代码集成到主题中同样也可以,代码提取自.html on PAGES 插件,将下面代码添加主题 functions.php 中即可。

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

添加后,需要到固定链接设置页面,重新保存一下固定链接设置,否则不会生效。上述代码适合伪静态的固定链接形式使用,比如:

  1.     /%postname%.html
  2.     /%post_id%.html

另外,如果同时使用了“给 WordPress 分类目录和页面添加斜杠”一文中的代码,还需要将该文中的代码修改为:

  1.     function nice_trailingslashit($string, $type_of_url) {
  2.         if ( $type_of_url != 'single' && $type_of_url != 'page' && $type_of_url != 'single_paged' )
  3.             $string = trailingslashit($string);
  4.         return $string;
  5.     }
  6.     add_filter('user_trailingslashit', 'nice_trailingslashit', 10, 2);

则还需要将该代码修改为:

  1.     // 添加斜杠
  2.     function nice_trailingslashit($string, $type_of_url) {
  3.         if ( $type_of_url != 'single' && $type_of_url != 'page' )
  4.           $string = trailingslashit($string);
  5.         return $string;
  6.     }
  7.     add_filter('user_trailingslashit', 'nice_trailingslashit', 10, 2);

排除页面文件,否则页面链接.html 后面也会自动加上斜杠。

类别:WordPress教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册